diff options
author | gweltas <gweltas@piwigo.org> | 2004-03-31 17:26:31 +0000 |
---|---|---|
committer | gweltas <gweltas@piwigo.org> | 2004-03-31 17:26:31 +0000 |
commit | b531871f125265596ee9a7c550fdd3f4bfd0d19e (patch) | |
tree | 08150726aff1c31a32b5bb92f8a4d0df15c14a56 /template/default/admin/cat_modify.tpl | |
parent | d90e90dd4a98c8bb70c83e5d0a351b27c0e2283b (diff) |
- Category upload admin control panel
git-svn-id: http://piwigo.org/svn/trunk@403 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | template/default/admin/cat_modify.tpl | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/template/default/admin/cat_modify.tpl b/template/default/admin/cat_modify.tpl new file mode 100644 index 000000000..4aa8ee032 --- /dev/null +++ b/template/default/admin/cat_modify.tpl @@ -0,0 +1,72 @@ +<!-- BEGIN confirmation --> +<div style="color:red;text-align:center;"> + {L_EDIT_CONFIRM} <a href="{U_PERMISSIONS}">{L_HERE}</a></div> +<!-- END confirmation --> +<div class="admin">{CATEGORIES_NAV}</div> +<form action="{F_ACTION}" method="POST"> +<table style="width:100%;"> + <!-- BEGIN server --> + <tr> + <td style="width:50%;">{L_REMOTE_SITE}</td> + <td class="row1">{SITE_URL}</td> + </tr> + <!-- END server --> + <tr> + <td style="width:50%;"><strong>{L_EDIT_NAME}</strong></td> + <td class="row1"> + <input type="text" name="name" value="{CAT_NAME}" maxlength="60"/> + </td> + </tr> + <!-- BEGIN storage --> + <tr> + <td><strong>{L_STORAGE}</strong></td> + <td class="row1">{CATEGORY_DIR}</td> + </tr> + <!-- END storage --> + <tr> + <td><strong>{L_EDIT_COMMENT}</strong></td> + <td class="row1"> + <textarea name="comment" rows="3" cols="50" >{CAT_COMMENT}</textarea> + </td> + </tr> + <tr> + <td><strong>{L_EDIT_STATUS} :</strong><br /><span class="small">{L_EDIT_STATUS_INFO}</span></td> + <td class="row1"> + <input type="radio" class="radio" name="status" value="public" {ACCESS_FREE} />{L_ACCESS_FREE} + <input type="radio" class="radio" name="status" value="private" {ACCESS_RESTRICTED} />{L_ACCESS_RESTRICTED} + </td> + </tr> + <tr> + <td><strong>{L_EDIT_LOCK} :</strong><br /><span class="small">{L_EDIT_LOCK_INFO}</span></td> + <td class="row1"> + <input type="radio" class="radio" name="visible" value="false" {LOCKED} />{L_YES} + <input type="radio" class="radio" name="visible" value="true" {UNLOCKED} />{L_NO} + </td> + </tr> + <!-- BEGIN parent --> + <tr> + <td>{#cat_parent}</td> + <td class="row1"> + <!-- BEGIN associate_LOV --> + <select name="associate"> + <!-- BEGIN associate_cat --> + <option value="{#value}">{#content}</option> + <!-- END associate_cat --> + </select> + <!-- END associate_LOV --> + <!-- BEGIN associate_text --> + <input type="text" name="associate" value="{#value}" /> + <!-- END associate_text --> + </td> + </tr> + <!-- END parent --> + <tr> + <td colspan="2"> </td> + </tr> + <tr> + <td colspan="2" align="center"> + <input type="submit" name="submit" value="{L_SUBMIT}" class="bouton" /> + </td> + </tr> + </table> +</form>
\ No newline at end of file |