source: trunk/template/cclear/admin/update.tpl @ 852

Last change on this file since 852 was 850, checked in by plg, 19 years ago
  • new : HTML BODY identifier to let CSS stylesheets manage specific behaviour.
  • deletion : admin/search useless
  • improvement : in admin/user_list, special behaviour for true/false fields (expand, show_comments)
  • new : gallery_title and gallery_description are displayed at the top of each page.
  • improvement : simplification in HTML for categories menu.
  • improvement : standardization of presentation in all public pages (identification, registration, search, profile, notification, comments, etc.)

(not in ChangeLog, below this line)

  • add forgotten notification.php (should have been added in a previous commit)
  • [template cclear] deletion of useless class .bouton
  • [template cclear] for test purpose, new presentation of register page (using FORM.filter)
  • [template cclear] adaptation of admin/group_list from template default
  • [template cclear] deletion of obsolete admin/infos_images
  • [template cclear] deletion of obsolete admin/search_username
  • [template cclear] new icon register.png
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.2 KB
Line 
1<!-- $Id: update.tpl 850 2005-08-25 22:43:47Z plg $ -->
2
3<h2>{lang:title_update}</h2>
4
5<!-- BEGIN update -->
6<h3>{L_RESULT_UPDATE}</h3>
7<ul>
8  <li class="update_summary_new">{update.NB_NEW_CATEGORIES} {L_NB_NEW_CATEGORIES}</li>
9  <li class="update_summary_new">{update.NB_NEW_ELEMENTS} {L_NB_NEW_ELEMENTS}</li>
10  <li class="update_summary_del">{update.NB_DEL_CATEGORIES} {L_NB_DEL_CATEGORIES}</li>
11  <li class="update_summary_del">{update.NB_DEL_ELEMENTS} {L_NB_DEL_ELEMENTS}</li>
12  <li class="update_summary_err">{update.NB_ERRORS} {L_UPDATE_NB_ERRORS}</li>
13</ul>
14<!-- BEGIN update_errors -->
15<h3>{L_UPDATE_ERROR_LIST_TITLE}</h3>
16<ul>
17  <!-- BEGIN update_error -->
18  <li>[{update.update_errors.update_error.ELEMENT}] {update.update_errors.update_error.LABEL}</li>
19  <!-- END update_error -->
20</ul>
21<h3>{L_UPDATE_ERRORS_CAPTION}</h3>
22<ul>
23  <li><strong>PWG-UPDATE-1</strong> : {L_UPDATE_WRONG_DIRNAME_INFO}</li>
24  <li><strong>PWG-UPDATE-2</strong> : {L_UPDATE_MISSING_TN_INFO} {{PICTURE_EXT_LIST}}</li>
25</ul>
26<!-- END update_errors -->
27<!-- BEGIN update_infos -->
28<h3>{L_UPDATE_INFOS_TITLE}</h3>
29<ul>
30  <!-- BEGIN update_info -->
31  <li>[{update.update_infos.update_info.ELEMENT}] {update.update_infos.update_info.LABEL}</li>
32  <!-- END update_info -->
33</ul>
34<!-- END update_infos -->
35<!-- END update -->
36
37<!-- BEGIN metadata_result -->
38<h3>{L_RESULT_METADATA}</h3>
39<ul>
40  <li>{metadata_result.NB_ELEMENTS} {L_ELEMENTS_METADATA_SYNC}</li>
41  <li>{L_USED_METADATA} : {METADATA_LIST}</li>
42</ul>
43<!-- END metadata_result -->
44
45<!-- BEGIN introduction -->
46<h3>{L_UPDATE_TITLE}</h3>
47<form action="{F_ACTION}" method="post" id="update">
48
49  <fieldset>
50    <legend>{L_UPDATE_SYNC_FILES}</legend>
51
52    <ul>
53      <li><label><input type="radio" name="sync" value="dirs" {SYNC_DIRS_CHECKED} /> {L_UPDATE_SYNC_DIRS}</label></li>
54      <li><label><input type="radio" name="sync" value="files" {SYNC_ALL_CHECKED} /> {L_UPDATE_SYNC_ALL}</label></li>
55      <li><label><input type="checkbox" name="display_info" value="1" {DISPLAY_INFO_CHECKED} /> {L_UPDATE_DISPLAY_INFO}</label></li>
56      <li><label><input type="checkbox" name="simulate" value="1" checked="checked" /> {L_UPDATE_SIMULATE}</label></li>
57    </ul>
58  </fieldset>
59
60  <fieldset>
61    <legend>{L_UPDATE_SYNC_METADATA}</legend>
62    <p> {L_USED_METADATA} : {METADATA_LIST}.</p>
63    <ul>
64      <li><label><input type="radio" name="sync" value="metadata_new" /> {L_UPDATE_SYNC_METADATA_NEW}</label></li>
65      <li><label><input type="radio" name="sync" value="metadata_all" /> {L_UPDATE_SYNC_METADATA_ALL}</label></li>
66    </ul>
67  </fieldset>
68 
69  <fieldset>
70    <legend>{L_UPDATE_CATS_SUBSET}</legend>
71 
72    <select style="width:500px" name="cat" size="10">
73      <!-- BEGIN category_option -->
74      <option {introduction.category_option.SELECTED} value="{introduction.category_option.VALUE}">{introduction.category_option.OPTION}</option>
75      <!-- END category_option -->
76    </select>
77 
78    <label><input type="checkbox" name="subcats-included" value="1" {SUBCATS_INCLUDED_CHECKED} /> {L_SEARCH_SUBCATS_INCLUDED}</label>
79  </fieldset>
80
81  <p class="bottomButtons">
82    <input type="submit" value="{L_SUBMIT}" name="submit" />
83    <input type="reset"  value="{L_RESET}"  name="reset"  />
84  </p>
85
86</form>
87<!-- END introduction -->
Note: See TracBrowser for help on using the repository browser.