mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-14 00:39:57 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@5785 201d5d3c-b55e-5fd7-737f-ddc643e51545
48 lines
2 KiB
HTML
48 lines
2 KiB
HTML
<!--#include("./common_header.html")-->
|
|
|
|
<h3>{$member_title = $lang->cmd_view_scrapped_document}</h3>
|
|
|
|
<!-- 목록 -->
|
|
<table cellspacing="0" class="colTable">
|
|
<caption>Total : {number_format($total_count)}, Page {number_format($page)}/{number_format($total_page)}</caption>
|
|
<thead>
|
|
<tr>
|
|
<th class="title"><div>{$lang->no}</div></th>
|
|
<th class="title" class="wide"><div>{$lang->title}</div></th>
|
|
<th class="title"><div>{$lang->writer}</div></th>
|
|
<th class="title"><div>{$lang->date}</div></th>
|
|
<th class="title"><div>{$lang->cmd_delete}</div></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<!--@foreach($document_list as $no => $val)-->
|
|
<tr>
|
|
<td>{$no}</td>
|
|
<td class="wide"><a href="{getUrl('','document_srl',$val->document_srl)}" onclick="window.open(this.href);return false;">{htmlspecialchars($val->title)}</a></td>
|
|
<td class="nowrap"><div class="member_{$val->target_member_srl}">{$val->nick_name}</div></td>
|
|
<td class="nowrap">{zdate($val->regdate, "Y-m-d H:i")}</td>
|
|
<td><a href="#" onclick="doDeleteScrap({$val->document_srl}); return false;" class="buttonSet buttonDelete"><span>{$lang->cmd_delete}</span></a></td>
|
|
</tr>
|
|
<!--@end-->
|
|
<tr>
|
|
<th class="button" colspan="5">
|
|
<a href="{getUrl('act','','selected_module_srl','')}" class="button"><span>{$lang->cmd_back}</span></a>
|
|
</th>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
<!-- 페이지 네비게이션 -->
|
|
<div class="pagination a1">
|
|
<a href="{getUrl('page','','module_srl','')}" class="prevEnd">{$lang->first_page}</a>
|
|
<!--@while($page_no = $page_navigation->getNextPage())-->
|
|
<!--@if($page == $page_no)-->
|
|
<strong>{$page_no}</strong>
|
|
<!--@else-->
|
|
<a href="{getUrl('page',$page_no,'module_srl','')}">{$page_no}</a>
|
|
<!--@end-->
|
|
<!--@end-->
|
|
<a href="{getUrl('page',$page_navigation->last_page,'module_srl','')}" class="nextEnd">{$lang->last_page}</a>
|
|
</div>
|
|
|
|
<!--#include("./common_footer.html")-->
|