source: trunk/template/yoga/admin/picture_modify.tpl @ 1672

Last change on this file since 1672 was 1652, checked in by rvelices, 18 years ago
  • feature 599: option to forbid user registration
  • 1 language cleanup
  • added page_forbidden function (sends 403)
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 6.0 KB
Line 
1<!-- $Id: picture_modify.tpl 1652 2006-12-13 01:05:38Z rvelices $ -->
2<h2>{lang:title_picmod}</h2>
3
4<img src="{TN_SRC}" alt="{lang:thumbnail}" class="thumbnail" />
5
6<ul class="categoryActions">
7  <!-- BEGIN jumpto -->
8  <li><a href="{jumpto.URL}" title="{lang:jump to image}"><img src="{themeconf:icon_dir}/category_jump-to.png" class="button" alt="{lang:jump to}" /></a></li>
9  <!-- END jumpto -->
10  <li><a href="{U_SYNC}" title="{lang:synchronize metadata}" {TAG_INPUT_ENABLED}><img src="{themeconf:icon_dir}/sync_metadata.png" class="button" alt="{lang:synchronize}" /></a></li>
11</ul>
12
13<form action="{F_ACTION}" method="post" id="properties">
14
15  <fieldset>
16    <legend>{lang:Informations}</legend>
17
18    <table>
19
20      <tr>
21        <td><strong>{lang:Path}</strong></td>
22        <td>{PATH}</td>
23      </tr>
24
25      <tr>
26        <td><strong>{lang:Post date}</strong></td>
27        <td>{REGISTRATION_DATE}</td>
28      </tr>
29
30      <tr>
31        <td><strong>{lang:Dimensions}</strong></td>
32        <td>{DIMENSIONS}</td>
33      </tr>
34
35      <tr>
36        <td><strong>{lang:Filesize}</strong></td>
37        <td>{FILESIZE}</td>
38      </tr>
39
40      <tr>
41        <td><strong>{lang:Storage category}</strong></td>
42        <td>{STORAGE_CATEGORY}</td>
43      </tr>
44
45      <!-- BEGIN links -->
46      <tr>
47        <td><strong>{lang:Linked categories}</strong></td>
48        <td>
49          <ul>
50            <!-- BEGIN category -->
51            <li>{links.category.NAME}</li>
52            <!-- END category -->
53          </ul>
54        </td>
55      </tr>
56      <!-- END links -->
57
58    </table>
59
60  </fieldset>
61
62  <fieldset>
63    <legend>{lang:Properties}</legend>
64
65    <table>
66
67      <tr>
68        <td><strong>{lang:Name}</strong></td>
69        <td><input type="text" name="name" value="{NAME}" /></td>
70      </tr>
71
72      <tr>
73        <td><strong>{lang:Author}</strong></td>
74        <td><input type="text" name="author" value="{AUTHOR}" /></td>
75      </tr>
76
77      <tr>
78        <td><strong>{lang:Creation date}</strong></td>
79        <td>
80          <label><input type="radio" name="date_creation_action" value="unset" /> {lang:unset}</label>
81          <input type="radio" name="date_creation_action" value="set" id="date_creation_action_set" /> {lang:set to}
82          <select onmousedown="document.getElementById('date_creation_action_set').checked = true;" name="date_creation_day">
83            <!-- BEGIN date_creation_day -->
84            <option {date_creation_day.SELECTED} value="{date_creation_day.VALUE}">{date_creation_day.OPTION}</option>
85            <!-- END date_creation_day -->
86          </select>
87          <select onmousedown="document.getElementById('date_creation_action_set').checked = true;" name="date_creation_month">
88            <!-- BEGIN date_creation_month -->
89            <option {date_creation_month.SELECTED} value="{date_creation_month.VALUE}">{date_creation_month.OPTION}</option>
90            <!-- END date_creation_month -->
91          </select>
92          <input onmousedown="document.getElementById('date_creation_action_set').checked = true;"
93                 name="date_creation_year"
94                 type="text"
95                 size="4"
96                 maxlength="4"
97                 value="{DATE_CREATION_YEAR_VALUE}" />
98        </td>
99      </tr>
100
101      <tr>
102        <td><strong>{lang:Tags}</strong></td>
103        <td>{TAG_SELECTION}</td>
104      </tr>
105
106
107      <tr>
108        <td><strong>{lang:Description}</strong></td>
109        <td><textarea name="description" class="description">{DESCRIPTION}</textarea></td>
110      </tr>
111
112    </table>
113
114    <p style="text-align:center;">
115      <input type="submit" value="{lang:Submit}" name="submit" {TAG_INPUT_ENABLED}/>
116      <input type="reset" value="{lang:Reset}" name="reset" />
117    </p>
118
119  </fieldset>
120
121</form>
122
123<form id="associations" method="post" action="{F_ACTION}#associations">
124  <fieldset>
125    <legend>{lang:Association to categories}</legend>
126
127    <table class="doubleSelect">
128      <tr>
129        <td>
130          <h3>{lang:Associated}</h3>
131          <select class="categoryList" name="cat_associated[]" multiple="multiple" size="30">
132            <!-- BEGIN associated_option -->
133            <option {associated_option.SELECTED} value="{associated_option.VALUE}">{associated_option.OPTION}</option>
134            <!-- END associated_option -->
135          </select>
136          <p><input type="submit" value="&raquo;" name="dissociate" style="font-size:15px;" {TAG_INPUT_ENABLED}/></p>
137        </td>
138
139        <td>
140          <h3>{lang:Dissociated}</h3>
141          <select class="categoryList" name="cat_dissociated[]" multiple="multiple" size="30">
142            <!-- BEGIN dissociated_option -->
143            <option {dissociated_option.SELECTED} value="{dissociated_option.VALUE}">{dissociated_option.OPTION}</option>
144            <!-- END dissociated_option -->
145          </select>
146          <p><input type="submit" value="&laquo;" name="associate" style="font-size:15px;" {TAG_INPUT_ENABLED}/></p>
147        </td>
148      </tr>
149    </table>
150
151  </fieldset>
152</form>
153
154<form id="representation" method="post" action="{F_ACTION}#representation">
155  <fieldset>
156    <legend>{lang:Representation of categories}</legend>
157
158    <table class="doubleSelect">
159      <tr>
160        <td>
161          <h3>{lang:Represents}</h3>
162          <select class="categoryList" name="cat_elected[]" multiple="multiple" size="30">
163            <!-- BEGIN elected_option -->
164            <option {elected_option.SELECTED} value="{elected_option.VALUE}">{elected_option.OPTION}</option>
165            <!-- END elected_option -->
166          </select>
167          <p><input type="submit" value="&raquo;" name="dismiss" style="font-size:15px;" {TAG_INPUT_ENABLED}/></p>
168        </td>
169
170        <td>
171          <h3>{lang:Does not represent}</h3>
172          <select class="categoryList" name="cat_dismissed[]" multiple="multiple" size="30">
173            <!-- BEGIN dismissed_option -->
174            <option {dismissed_option.SELECTED} value="{dismissed_option.VALUE}">{dismissed_option.OPTION}</option>
175            <!-- END dismissed_option -->
176          </select>
177          <p><input type="submit" value="&laquo;" name="elect" style="font-size:15px;" {TAG_INPUT_ENABLED}/></p>
178        </td>
179      </tr>
180    </table>
181
182  </fieldset>
183</form>
Note: See TracBrowser for help on using the repository browser.