source: trunk/template/default/admin/cat_modify.tpl @ 631

Last change on this file since 631 was 403, checked in by gweltas, 20 years ago
  • Category upload admin control panel
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.4 KB
Line 
1<!-- BEGIN confirmation -->
2<div style="color:red;text-align:center;">
3  {L_EDIT_CONFIRM} <a href="{U_PERMISSIONS}">{L_HERE}</a></div>
4<!-- END confirmation -->
5<div class="admin">{CATEGORIES_NAV}</div>
6<form action="{F_ACTION}" method="POST">
7<table style="width:100%;">
8    <!-- BEGIN server -->
9    <tr>
10      <td style="width:50%;">{L_REMOTE_SITE}</td>
11      <td class="row1">{SITE_URL}</td>
12    </tr>
13    <!-- END server -->
14    <tr>
15      <td style="width:50%;"><strong>{L_EDIT_NAME}</strong></td>
16      <td class="row1">
17        <input type="text" name="name" value="{CAT_NAME}" maxlength="60"/>
18      </td>
19    </tr>
20        <!-- BEGIN storage -->
21        <tr>
22      <td><strong>{L_STORAGE}</strong></td>
23      <td class="row1">{CATEGORY_DIR}</td>
24    </tr>
25        <!-- END storage -->
26    <tr>
27      <td><strong>{L_EDIT_COMMENT}</strong></td>
28      <td class="row1">
29        <textarea name="comment" rows="3" cols="50" >{CAT_COMMENT}</textarea>
30      </td>
31    </tr>
32    <tr>
33      <td><strong>{L_EDIT_STATUS}&nbsp;:</strong><br /><span class="small">{L_EDIT_STATUS_INFO}</span></td>
34      <td class="row1">
35          <input type="radio" class="radio" name="status" value="public" {ACCESS_FREE} />{L_ACCESS_FREE}&nbsp;&nbsp;
36          <input type="radio" class="radio" name="status" value="private" {ACCESS_RESTRICTED} />{L_ACCESS_RESTRICTED}
37      </td>
38    </tr>
39        <tr>
40      <td><strong>{L_EDIT_LOCK}&nbsp;:</strong><br /><span class="small">{L_EDIT_LOCK_INFO}</span></td>
41      <td class="row1">
42          <input type="radio" class="radio" name="visible" value="false" {LOCKED} />{L_YES}&nbsp;&nbsp;
43          <input type="radio" class="radio" name="visible" value="true" {UNLOCKED} />{L_NO}
44      </td>
45    </tr>
46    <!-- BEGIN parent -->
47    <tr>
48      <td>{#cat_parent}</td>
49      <td class="row1">
50        <!-- BEGIN associate_LOV -->
51        <select name="associate">
52          <!-- BEGIN associate_cat -->
53          <option value="{#value}">{#content}</option>
54          <!-- END associate_cat -->
55        </select>
56        <!-- END associate_LOV -->
57        <!-- BEGIN associate_text -->
58        <input type="text" name="associate" value="{#value}" />
59        <!-- END associate_text -->
60      </td>
61    </tr>
62    <!-- END parent -->
63    <tr>
64      <td colspan="2">&nbsp;</td>
65    </tr>
66    <tr>
67      <td colspan="2" align="center">
68        <input type="submit" name="submit" value="{L_SUBMIT}" class="bouton" />
69      </td>
70    </tr>
71  </table>
72</form>
Note: See TracBrowser for help on using the repository browser.