1 | <h2>{lang:Batch management}</h2> |
---|
2 | |
---|
3 | <h3>{CATEGORIES_NAV}</h3> |
---|
4 | |
---|
5 | <p style="text-align:center;"> |
---|
6 | <a href="{U_GLOBAL_MODE}">{lang:global mode}</a> |
---|
7 | | {lang:unit mode} |
---|
8 | </p> |
---|
9 | |
---|
10 | <form action="{F_ACTION}" method="POST"> |
---|
11 | |
---|
12 | <input type="hidden" name="list" value="{IDS_LIST}" /> |
---|
13 | |
---|
14 | <fieldset> |
---|
15 | |
---|
16 | <legend>{lang:Display options}</legend> |
---|
17 | |
---|
18 | <p>{lang:elements per page} : |
---|
19 | <a href="{U_ELEMENTS_PAGE}&display=5">5</a> |
---|
20 | | <a href="{U_ELEMENTS_PAGE}&display=10">10</a> |
---|
21 | | <a href="{U_ELEMENTS_PAGE}&display=50">50</a> |
---|
22 | | <a href="{U_ELEMENTS_PAGE}&display=all">{lang:all}</a> |
---|
23 | </p> |
---|
24 | |
---|
25 | </fieldset> |
---|
26 | |
---|
27 | <div class="navigationBar">{NAV_BAR}</div> |
---|
28 | |
---|
29 | <!-- BEGIN element --> |
---|
30 | <fieldset class="elementEdit"> |
---|
31 | <legend>{element.LEGEND}</legend> |
---|
32 | |
---|
33 | <a href="{element.U_EDIT}"><img src="{element.TN_SRC}" alt="" class="miniature" title="{lang:Edit all picture informations}" /></a> |
---|
34 | |
---|
35 | <table> |
---|
36 | |
---|
37 | <tr> |
---|
38 | <td><strong>{lang:Name}</strong></td> |
---|
39 | <td><input type="text" name="name-{element.ID}" value="{element.NAME}" /></td> |
---|
40 | </tr> |
---|
41 | |
---|
42 | <tr> |
---|
43 | <td><strong>{lang:Author}</strong></td> |
---|
44 | <td><input type="text" name="author-{element.ID}" value="{element.AUTHOR}" /></td> |
---|
45 | </tr> |
---|
46 | |
---|
47 | <tr> |
---|
48 | <td><strong>{lang:Creation date}</strong></td> |
---|
49 | <td> |
---|
50 | <label><input type="radio" name="date_creation_action-{element.ID}" value="unset" /> {lang:unset}</label> |
---|
51 | <input type="radio" name="date_creation_action-{element.ID}" value="set" id="date_creation_action_set-{element.ID}" /> {lang:set to} |
---|
52 | <select onmousedown="document.getElementById('date_creation_action_set-{element.ID}').checked = true;" name="date_creation_day-{element.ID}"> |
---|
53 | <!-- BEGIN date_creation_day --> |
---|
54 | <option {element.date_creation_day.SELECTED} value="{element.date_creation_day.VALUE}">{element.date_creation_day.OPTION}</option> |
---|
55 | <!-- END date_creation_day --> |
---|
56 | </select> |
---|
57 | <select onmousedown="document.getElementById('date_creation_action_set-{element.ID}').checked = true;" name="date_creation_month-{element.ID}"> |
---|
58 | <!-- BEGIN date_creation_month --> |
---|
59 | <option {element.date_creation_month.SELECTED} value="{element.date_creation_month.VALUE}">{element.date_creation_month.OPTION}</option> |
---|
60 | <!-- END date_creation_month --> |
---|
61 | </select> |
---|
62 | <input onmousedown="document.getElementById('date_creation_action_set-{element.ID}').checked = true;" |
---|
63 | name="date_creation_year-{element.ID}" |
---|
64 | type="text" |
---|
65 | size="4" |
---|
66 | maxlength="4" |
---|
67 | value="{element.DATE_CREATION_YEAR}" /> |
---|
68 | </td> |
---|
69 | </tr> |
---|
70 | |
---|
71 | <tr> |
---|
72 | <td><strong>{lang:Keywords}</strong></td> |
---|
73 | <td><input type="text" name="keywords-{element.ID}" value="{element.KEYWORDS}" size="50" /></td> |
---|
74 | </tr> |
---|
75 | |
---|
76 | <tr> |
---|
77 | <td><strong>{lang:Description}</strong></td> |
---|
78 | <td><textarea name="description-{element.ID}" class="description">{element.DESCRIPTION}</textarea></td> |
---|
79 | </tr> |
---|
80 | |
---|
81 | </table> |
---|
82 | |
---|
83 | </fieldset> |
---|
84 | <!-- END element --> |
---|
85 | |
---|
86 | <p> |
---|
87 | <input type="submit" value="{L_SUBMIT}" name="submit" /> |
---|
88 | <input type="reset" value="{lang:Reset}" /> |
---|
89 | </p> |
---|
90 | |
---|
91 | |
---|
92 | </form> |
---|