source: trunk/template/default/admin/infos_images.tpl @ 665

Last change on this file since 665 was 647, checked in by plg, 20 years ago
  • bug fixed : in admin/cat_list, next_rank cant' be calculted and query to count sub-categories per sub-categories became false if no sub-categories
  • virtual association come back in admin/infos_images (not only in admin/picture_modify)
  • check_favorites function in admin section becomes check_user_favorites in public section : favorites are checked when user tries to display his favorites. Function was optimized.
  • in function update_category, wrap of long queries due to many categories to update at the same time
  • typo fixed in description of paginate_pages_around configuration parameter
  • bug fixed in new navigation bar : no separation pipe was displayed between next and last when the page displayed was the last
  • sessions.expiration changed of type from int to datetime (a lot easier to read)
  • sessions.ip removed : IP address is no longer used to verify session
  • typo fixed in language/en_UK.iso-8859-1/admin.lang.php on editcat_lock_info language item
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.9 KB
RevLine 
[506]1<!-- BEGIN errors -->
2<div class="errors">
3<ul>
4  <!-- BEGIN error -->
5  <li>{errors.error.ERROR}</li>
6  <!-- END error -->
7</ul>
8</div>
9<!-- END errors -->
[589]10
[506]11<form action="{F_ACTION}" method="POST">
12<div class="admin">{L_INFOS_TITLE} &quot;{CATEGORY}&quot;</div>
13  <table width="100%">
14    <tr>
15      <td><div style="margin-left:50px;">{L_AUTHOR}</div></td>
16      <td style="row1">
17        <input type="text" name="author_cat" value="" maxlength="255" />
18      </td>
19      <td style="text-align:left;">
20        <input type="checkbox" name="use_common_author" value="1" />
21        {L_INFOS_OVERALL_USE}
22      </td>
23    </tr>
24    <tr>
25      <td>
26        <div style="margin-left:50px;">{L_INFOS_CREATION_DATE} [DD/MM/YYYY]</div>
27      </td>
28      <td style="row1">
29        <input type="text" name="date_creation_cat" value="" size="12" maxlength="10"/>
30      </td>
31      <td style="text-align:left;">
32        <input type="checkbox" name="use_common_date_creation" value="1" />
33        {L_INFOS_OVERALL_USE}
34      </td>
35    </tr>
36    <tr>
37      <td>
38        <div style="margin-left:50px;">{L_KEYWORD} {L_KEYWORD_SEPARATION}</div>
39      </td>
40      <td style="row1">
41        <input type="text" name="keywords_cat" value="" maxlength="255" />
42      </td>
43      <td style="text-align:left;">
44        <input type="radio" name="common_keywords" value="add" />
45        {L_INFOS_ADDTOALL}
46        <input type="radio" name="common_keywords" value="remove" />
47        {L_INFOS_REMOVEFROMALL}
48      </td>
49    </tr>
50  </table>
51  <br />
52  <div class="admin">{L_INFOS_DETAIL}</div>
53  <div class="navigationBar">{NAV_BAR}</div>
54  <table width="100%">
55    <tr>
56      <td style="width:0px;">&nbsp;</td>
57      <td class="row2" style="text-align:center;">{L_THUMBNAIL}</td>
58      <td class="row2" style="text-align:center;">{L_INFOS_IMG}</td>
59      <td class="row2" style="text-align:center;">{L_AUTHOR}</td>
60      <td class="row2" style="text-align:center;">{L_INFOS_COMMENT}</td>
61      <td class="row2" style="text-align:center;">{L_INFOS_CREATION_DATE}</td>
62      <td class="row2" style="text-align:center;">{L_KEYWORD}</td>
63    </tr>
64    <!-- BEGIN picture -->
65    <tr>
66      <td style="width:0px;">
67        <div style="margin-left:2px;margin-right:2px;">
68          <input type="checkbox" name="check-{picture.ID_IMG}" value="1" />
69        </div>
70      </td>
71      <td style="text-align:center;"><a name="{picture.DEFAULTNAME_IMG}" href="{picture.URL_IMG}"><img src="{picture.TN_URL_IMG}" alt="" class="miniature" title="{picture.FILENAME_IMG}" /></a></td>
72      <td style="text-align:center;">{picture.DEFAULTNAME_IMG}<br /><input type="text" name="name-{picture.ID_IMG}" value="{picture.NAME_IMG}" maxlength="255"/></td>
73      <td style="text-align:center;"><input type="text" name="author-{picture.ID_IMG}" value="{picture.AUTHOR_IMG}" maxlength="255" size="12" /></td>
74      <td style="text-align:center;"><textarea name="comment-{picture.ID_IMG}" rows="5" cols="30" style="overflow:auto">{picture.COMMENT_IMG}</textarea></td>
75      <td style="text-align:center;"><input type="text" name="date_creation-{picture.ID_IMG}" value="{picture.DATE_IMG}" maxlength="10" size="10" /></td>
76      <td style="text-align:center;"><input type="text" name="keywords-{picture.ID_IMG}" value="{picture.KEYWORDS_IMG}" length="255" /></td>
77    </tr>
78    <!-- END picture -->
79    <tr>
[589]80      <td colspan="7">
[647]81        <img src="./template/default/admin/images/arrow_select.gif" alt="&uarr;" />
[506]82        {L_INFOS_ASSOCIATE}
[647]83        <select style="width:400px" name="associate" size="1">
84          <!-- BEGIN associate_option -->
85          <option {associate_option.SELECTED} value="{associate_option.VALUE}">{associate_option.OPTION}</option>
86          <!-- END category_option -->
[506]87        </select>
88      </td>
89    </tr>
90    <tr>
[589]91      <td colspan="7" style="text-align:center;">
[506]92        <input type="submit" value="{L_SUBMIT}" name="submit" class="bouton" />
93      </td>
94    </tr>
95  </table>
[589]96</form>
Note: See TracBrowser for help on using the repository browser.