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

This commit is contained in:
zero 2007-06-25 06:23:40 +00:00
parent dd18ad335f
commit f4626edf09
72 changed files with 1049 additions and 795 deletions

View file

@ -1,37 +1,32 @@
<!--%import("filter/delete_shortcut.xml")-->
<!--%import("js/admin.js")-->
<!--#include("./header.html")-->
<h3>{$lang->cmd_shortcut_management}</h3>
<div>
{$lang->about_shortcut}
</div>
<div class="infoText">{$lang->about_shortcut}</div>
<!-- 숏컷의 위/아래, 삭제와 관련된 form -->
<form id="fo_shortcut_info" action="./" method="get">
<input type="hidden" name="selected_module" value="" />
</form>
<div>
<table>
<table cellspacing="0" class="tableType3">
<thead>
<tr>
<th>{$lang->title}</th>
<th>{$lang->module}</th>
<th>{$lang->regdate}</th>
<th>{$lang->cmd_delete}</th>
<th scope="col">{$lang->title}</th>
<th scope="col">{$lang->module}</th>
<th scope="col">{$lang->regdate}</th>
<th scope="col">{$lang->cmd_delete}</th>
</tr>
<!--@if(!count($shortcut_list))-->
<tr>
<td colspan="4">{$lang->msg_shortcut_is_null}</td>
</tr>
<!--@end-->
</thead>
<tbody>
<!--@foreach($shortcut_list as $shortcut_info)-->
<tr>
<td>{$shortcut_info->title}</td>
<td>{$shortcut_info->module}</td>
<td>{zdate($shortcut_info->last_update,"Y-m-d H:i:s")}</td>
<td><a href="#" onclick="doDeleteShortCut('{$shortcut_info->module}');return false;">{$lang->cmd_delete}</a></td>
<th scope="row">{$shortcut_info->title}</th>
<td class="tahoma">{$shortcut_info->module}</td>
<td class="tahoma">{zdate($shortcut_info->regdate,"Y-m-d H:i:s")}</td>
<td class="tahoma"><a href="#" onclick="doDeleteShortCut('{$shortcut_info->module}');return false;" class="red">{$lang->cmd_delete}</a></td>
</tr>
<!--@end-->
</table>
</div>
</tbody>
</table>