mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-05-04 12:32:48 +02:00
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 git-svn-id: http://piwigo.org/svn/trunk@850 68402e56-0260-453c-a942-63ccdbb3a9ee
49 lines
2.0 KiB
Smarty
49 lines
2.0 KiB
Smarty
<!-- $Id$ -->
|
|
<h2>{lang:title_categories}</h2>
|
|
|
|
<h3>{CATEGORIES_NAV}</h3>
|
|
|
|
<form id="categoryOrdering" action="" method="post">
|
|
|
|
<ul>
|
|
|
|
<!-- BEGIN category -->
|
|
<li> <!-- category {category.ID} -->
|
|
|
|
<ul class="categoryActions">
|
|
<li><a href="{category.U_JUMPTO}" title="{lang:jump to category}"><img src="./template/default/theme/category_jump-to.png" alt="{lang:jump to}" /></a></li>
|
|
<li><a href="{category.U_EDIT}" title="{lang:edit category informations}"><img src="./template/default/theme/category_edit.png" alt="{lang:edit}"/></a></li>
|
|
<!-- BEGIN elements -->
|
|
<li><a href="{category.elements.URL}" title="{lang:manage category elements}"><img src="./template/default/theme/category_elements.png" alt="{lang:elements}" /></a></li>
|
|
<!-- END elements -->
|
|
<li><a href="{category.U_CHILDREN}" title="{lang:manage sub-categories}"><img src="./template/default/theme/category_children.png" alt="{lang:sub-categories}" /></a></li>
|
|
<!-- BEGIN permissions -->
|
|
<li><a href="{category.permissions.URL}" title="{lang:edit category permissions}" ><img src="./template/default/theme/category_permissions.png" alt="{lang:permissions}" /></a></li>
|
|
<!-- END permissions -->
|
|
<!-- BEGIN delete -->
|
|
<li><a href="{category.delete.URL}" title="{lang:delete category}"><img src="./template/default/theme/category_delete.png" alt="{lang:delete}" /></a></li>
|
|
<!-- END delete -->
|
|
</ul>
|
|
|
|
<p><strong>{category.NAME}</strong></p>
|
|
|
|
<p>
|
|
<label>
|
|
{lang:Position} :
|
|
<input type="text" size="4" name="catOrd[{category.ID}]" maxlength="4" value="{category.RANK}" />
|
|
</label>
|
|
</p>
|
|
|
|
</li>
|
|
<!-- END category -->
|
|
|
|
<p><input name="submitOrder" type="submit" value="{lang:Save order}" /></p>
|
|
|
|
</form>
|
|
|
|
<form action="{F_ACTION}" method="post">
|
|
{L_ADD_VIRTUAL} : <input type="text" name="virtual_name" />
|
|
<input type="hidden" name="rank" value="{NEXT_RANK}"/>
|
|
<input type="submit" value="{L_SUBMIT}" name="submitAdd" />
|
|
</form>
|