source: trunk/template/yoga/admin/cat_list.tpl @ 948

Last change on this file since 948 was 948, checked in by chrisaga, 18 years ago
  • report bug 206 correction and some template improvement from branch 1.5
  • feature 195 : add an "Admin" link under "Home" in the menu bar of the admin page
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.2 KB
Line 
1<!-- $Id: cat_list.tpl 948 2005-11-19 23:46:18Z chrisaga $ -->
2<h2>{lang:title_categories}</h2>
3
4<h3>{CATEGORIES_NAV}</h3>
5
6<form id="categoryOrdering" action="" method="post">
7
8  <ul class="categoryUl">
9
10    <!-- BEGIN category -->
11    <li class="categoryLi"> <!-- category {category.ID} -->
12
13      <ul class="categoryActions">
14        <li><a href="{category.U_JUMPTO}" title="{lang:jump to category}"><img src="./template/yoga/theme/category_jump-to.png" class="button" alt="{lang:jump to}" /></a></li>
15        <li><a href="{category.U_EDIT}" title="{lang:edit category informations}"><img src="./template/yoga/theme/category_edit.png" class="button" alt="{lang:edit}"/></a></li>
16        <!-- BEGIN elements -->
17        <li><a href="{category.elements.URL}" title="{lang:manage category elements}"><img src="./template/yoga/theme/category_elements.png" class="button" alt="{lang:elements}" /></a></li>
18        <!-- END elements -->
19        <li><a href="{category.U_CHILDREN}" title="{lang:manage sub-categories}"><img src="./template/yoga/theme/category_children.png" class="button" alt="{lang:sub-categories}" /></a></li>
20        <!-- BEGIN permissions -->
21        <li><a href="{category.permissions.URL}" title="{lang:edit category permissions}" ><img src="./template/yoga/theme/category_permissions.png" class="button" alt="{lang:permissions}" /></a></li>
22        <!-- END permissions -->
23        <!-- BEGIN delete -->
24        <li><a href="{category.delete.URL}" title="{lang:delete category}"><img src="./template/yoga/theme/category_delete.png" class="button" alt="{lang:delete}" /></a></li>
25        <!-- END delete -->
26      </ul>
27
28      <p><strong>{category.NAME}</strong></p>
29
30      <p>
31        <label>
32          {lang:Position} :
33          <input type="text" size="4" name="catOrd[{category.ID}]" maxlength="4" value="{category.RANK}" />
34        </label>
35      </p>
36
37    </li>
38    <!-- END category -->
39
40  </ul>
41  <p><input name="submitOrder" type="submit" value="{lang:Save order}" /></p>
42
43</form>
44
45<form id="addVirtual" action="{F_ACTION}" method="post">
46  <p>
47    {L_ADD_VIRTUAL} : <input type="text" name="virtual_name" />
48    <input type="hidden" name="rank" value="{NEXT_RANK}"/>
49    <input type="submit" value="{L_SUBMIT}" name="submitAdd" />
50  </p>
51</form>
Note: See TracBrowser for help on using the repository browser.