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

Last change on this file since 1754 was 1754, checked in by rvelices, 17 years ago

some more language cleanup

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.7 KB
Line 
1<!-- $Id: cat_list.tpl 1754 2007-01-25 02:56:51Z rvelices $ -->
2<h2>{lang:title_categories}</h2>
3
4<h3>{CATEGORIES_NAV}</h3>
5
6<form id="addVirtual" action="{F_ACTION}" method="post">
7  <p>
8    {L_ADD_VIRTUAL} : <input type="text" name="virtual_name" />
9    <input type="submit" value="{L_SUBMIT}" name="submitAdd" {TAG_INPUT_ENABLED} />
10    <!-- BEGIN eop_link -->
11    <a href="#EoP" class="button"><img src="{themeconf:icon_dir}/page_end.png" class="button" alt="{lang:page_end}" /></a>
12    <!-- END eop_link -->
13  </p>
14</form>
15
16<!-- BEGIN categories -->
17<form id="categoryOrdering" action="{F_ACTION}" method="post">
18  <ul class="categoryUl">
19
20    <!-- BEGIN category -->
21    <li class="categoryLi"> <!-- category {category.ID} -->
22
23      <ul class="categoryActions">
24        <li><a href="{categories.category.U_JUMPTO}" title="{lang:jump to category}"><img src="{themeconf:icon_dir}/category_jump-to.png" class="button" alt="{lang:jump to category}" /></a></li>
25        <li><a href="{categories.category.U_EDIT}" title="{lang:edit category informations}"><img src="{themeconf:icon_dir}/category_edit.png" class="button" alt="{lang:edit}"/></a></li>
26        <!-- BEGIN elements -->
27        <li><a href="{categories.category.elements.URL}" title="{lang:manage category elements}"><img src="{themeconf:icon_dir}/category_elements.png" class="button" alt="{lang:elements}" /></a></li>
28        <!-- END elements -->
29        <li><a href="{categories.category.U_CHILDREN}" title="{lang:manage sub-categories}"><img src="{themeconf:icon_dir}/category_children.png" class="button" alt="{lang:sub-categories}" /></a></li>
30        <!-- BEGIN permissions -->
31        <li><a href="{categories.category.permissions.URL}" title="{lang:edit category permissions}" ><img src="{themeconf:icon_dir}/category_permissions.png" class="button" alt="{lang:permissions}" /></a></li>
32        <!-- END permissions -->
33        <!-- BEGIN delete -->
34        <li><a href="{categories.category.delete.URL}" title="{lang:delete category}" onclick="return confirm('{lang:Are you sure?}');"><img src="{themeconf:icon_dir}/category_delete.png" class="button" alt="{lang:delete}" /></a></li>
35        <!-- END delete -->
36      </ul>
37
38      <p><strong><a href="{categories.category.U_CHILDREN}" title="{lang:manage sub-categories}">{categories.category.NAME}</a></strong></p>
39
40      <p>
41        <label>
42          {lang:Position} :
43          <input type="text" size="4" name="catOrd[{categories.category.ID}]" maxlength="4" value="{categories.category.RANK}" />
44        </label>
45      </p>
46
47    </li>
48    <!-- END category -->
49  </ul>
50  <p>
51    <input name="submitOrder" type="submit" value="{lang:Save order}" {TAG_INPUT_ENABLED} />
52    <input name="submitOrderAlphaNum" type="submit" value="{lang:Order alphanumerically}" {TAG_INPUT_ENABLED} />
53  </p>
54
55</form>
56<!-- END categories -->
57
Note: See TracBrowser for help on using the repository browser.