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

This commit is contained in:
zero 2007-03-06 03:26:53 +00:00
parent 812bbd54e6
commit 7258af97a0
11 changed files with 129 additions and 13 deletions

View file

@ -1,4 +1,4 @@
<filter name="delete_checked" module="comment" act="procDeleteChecked" confirm_msg_code="confirm_delete">
<filter name="delete_checked" module="trackback" act="procDeleteChecked" confirm_msg_code="confirm_delete">
<form>
<node target="cart" required="true" />
</form>

View file

@ -1,5 +1,4 @@
<!--%import("filter/delete_checked.xml")-->
<!--#include("header.html")-->
<!-- 게시판 정보 -->
<div>
@ -21,15 +20,15 @@
<th>{$lang->date}</th>
<th>{$lang->cmd_move}</th>
</tr>
<!--@foreach($comment_list as $no => $val)-->
<!--@foreach($trackback_list as $no => $val)-->
<tr>
<td>{$no}</td>
<td><input type="checkbox" name="cart" value="{$val->comment_srl}" /></td>
<td><input type="checkbox" name="cart" value="{$val->trackback_srl}" /></td>
<td><a href="#" onclick="window.open('./?mid={$val->mid}');return false">{$module_list[$val->module_srl]->browser_title}</a></td>
<td>{$val->user_name}</td>
<td>{$val->content}</td>
<td>{zdate($val->regdate,"Y-m-d")}</td>
<td><a href="#" onclick="window.open('./?document_srl={$val->document_srl}&amp;#comment_{$val->comment_srl}');return false">{$lang->cmd_move}</a></td>
<td><a href="#" onclick="window.open('./?document_srl={$val->document_srl}&amp;#trackback_{$val->trackback_srl}');return false">{$lang->cmd_move}</a></td>
</tr>
<!--@end-->
</table>
@ -37,22 +36,22 @@
<!-- 버튼 -->
<div>
<input type="submit" value="{$lang->cmd_delete_checked_comment}" />
<input type="submit" value="{$lang->cmd_delete_checked_trackback}" />
</div>
</form>
<!-- 페이지 네비게이션 -->
<div>
<a href="{getUrl('page','','comment_srl','')}">[{$lang->first_page}]</a>
<a href="{getUrl('page','','trackback_srl','')}">[{$lang->first_page}]</a>
<!--@while($page_no = $page_navigation->getNextPage())-->
<!--@if($page == $page_no)-->
{$page_no}
<!--@else-->
<a href="{getUrl('page',$page_no,'comment_srl','')}">[{$page_no}]</a>
<a href="{getUrl('page',$page_no,'trackback_srl','')}">[{$page_no}]</a>
<!--@end-->
<!--@end-->
<a href="{getUrl('page',$page_navigation->last_page,'comment_srl','')}">[{$lang->last_page}]</a>
<a href="{getUrl('page',$page_navigation->last_page,'trackback_srl','')}">[{$lang->last_page}]</a>
</div>