git-svn-id: http://xe-core.googlecode.com/svn/trunk@1772 201d5d3c-b55e-5fd7-737f-ddc643e51545

This commit is contained in:
zero 2007-06-26 09:18:42 +00:00
parent fbbad5e79e
commit 898eb99469
26 changed files with 214 additions and 135 deletions

View file

@ -16,7 +16,7 @@
<th scope="col">{$lang->category_title}</th>
<th scope="col">{$lang->last_update}</th>
<th scope="col">{$lang->cmd_modify}</th>
<th scope="col" colspan="2">{$lang->cmd_move}</th>
<th scope="col">{$lang->cmd_move}</th>
<th scope="col">{$lang->cmd_delete}</th>
</tr>
</thead>
@ -32,8 +32,10 @@
<td class="tahoma">{htmlspecialchars($category_info->title)}</td>
<td class="tahoma">{zdate($category_info->last_update,"Y-m-d H:i:s")}</td>
<td class="tahoma blue"><a href="{getUrl('category_srl',$category_info->category_srl)}">{$lang->cmd_modify}</a></td>
<td class="tahoma"><a href="#" onclick="doUpdateCategory('{$category_info->category_srl}','up');return false;">{$lang->cmd_move_up}</a></td>
<td class="tahoma"><a href="#" onclick="doUpdateCategory('{$category_info->category_srl}','down');return false;">{$lang->cmd_move_down}</a></td>
<td>
<a href="#" onclick="doUpdateCategory('{$category_info->category_srl}','up');return false;"><img src="../../admin/tpl/images/button_up.gif" alt="{$lang->cmd_move_up}" width="14" height="14" /></a>
<a href="#" onclick="doUpdateCategory('{$category_info->category_srl}','down');return false;"><img src="../../admin/tpl/images/button_down.gif" alt="{$lang->cmd_move_down}" width="14" height="14" /></a>
</td>
<td class="tahoma red"><a href="#" onclick="doUpdateCategory('{$category_info->category_srl}','delete','{$lang->confirm_delete}');return false;">{$lang->cmd_delete}</a></td>
</tr>
<!--@end-->