1 | <!-- $Id: cat_list.tpl 1900 2007-03-12 22:33:53Z rub $ --> |
---|
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 class="submit" 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 | <p> |
---|
19 | <input class="submit" name="submitOrder" type="submit" value="{lang:Save order}" {TAG_INPUT_ENABLED} /> |
---|
20 | <input class="submit" name="submitOrderAlphaNum" type="submit" value="{lang:Order alphanumerically}" {TAG_INPUT_ENABLED} /> |
---|
21 | </p> |
---|
22 | <ul class="categoryUl"> |
---|
23 | |
---|
24 | <!-- BEGIN category --> |
---|
25 | <li class="categoryLi |
---|
26 | <!-- BEGIN virtual --> |
---|
27 | {categories.category.virtual.CLASS} |
---|
28 | <!-- END virtual --> |
---|
29 | "> <!-- category {category.ID} --> |
---|
30 | |
---|
31 | <ul class="categoryActions"> |
---|
32 | <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> |
---|
33 | <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> |
---|
34 | <!-- BEGIN elements --> |
---|
35 | <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> |
---|
36 | <!-- END elements --> |
---|
37 | <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> |
---|
38 | <!-- BEGIN permissions --> |
---|
39 | <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> |
---|
40 | <!-- END permissions --> |
---|
41 | <!-- BEGIN delete --> |
---|
42 | <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> |
---|
43 | <!-- END delete --> |
---|
44 | </ul> |
---|
45 | |
---|
46 | <p> |
---|
47 | <strong><a href="{categories.category.U_CHILDREN}" title="{lang:manage sub-categories}">{categories.category.NAME}</a></strong> |
---|
48 | <!-- BEGIN virtual --> |
---|
49 | <img src="{themeconf:icon_dir}/virt_category.png" class="button" alt="{lang:virtual_category}" /> |
---|
50 | <!-- END virtual --> |
---|
51 | </p> |
---|
52 | |
---|
53 | <p> |
---|
54 | <label> |
---|
55 | {lang:Position} : |
---|
56 | <input type="text" size="4" name="catOrd[{categories.category.ID}]" maxlength="4" value="{categories.category.RANK}" /> |
---|
57 | </label> |
---|
58 | </p> |
---|
59 | |
---|
60 | </li> |
---|
61 | <!-- END category --> |
---|
62 | </ul> |
---|
63 | <p> |
---|
64 | <input class="submit" name="submitOrder" type="submit" value="{lang:Save order}" {TAG_INPUT_ENABLED} /> |
---|
65 | <input class="submit" name="submitOrderAlphaNum" type="submit" value="{lang:Order alphanumerically}" {TAG_INPUT_ENABLED} /> |
---|
66 | </p> |
---|
67 | |
---|
68 | </form> |
---|
69 | <!-- END categories --> |
---|
70 | |
---|