mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-30 00:29:58 +09:00
스크랩 기능 추가
git-svn-id: http://xe-core.googlecode.com/svn/trunk@2005 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
c40dfd2e02
commit
d832370fbe
26 changed files with 235 additions and 2 deletions
56
modules/member/skins/default/scrapped_list.html
Normal file
56
modules/member/skins/default/scrapped_list.html
Normal file
|
|
@ -0,0 +1,56 @@
|
|||
{@ $member_title = $lang->cmd_view_scrapped_document }
|
||||
<!--#include("./common_header.html")-->
|
||||
|
||||
<!-- 정보 -->
|
||||
<div class="boardInformation">
|
||||
Total : <strong>{number_format($total_count)}</strong>,
|
||||
Page <strong>{number_format($page)}</strong>/{number_format($total_page)}
|
||||
</div>
|
||||
|
||||
<!-- 목록 -->
|
||||
<table cellspacing="0" class="list">
|
||||
<col width="80" />
|
||||
<col />
|
||||
<col width="120" />
|
||||
<col width="100" />
|
||||
<thead>
|
||||
<tr>
|
||||
<th scope="col">{$lang->no}</th>
|
||||
<th scope="col">{$lang->title}</th>
|
||||
<th scope="col">{$lang->author}</th>
|
||||
<th scope="col">{$lang->date}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<!--@foreach($document_list as $no => $val)-->
|
||||
<tr class="bg{($no+1)%2+1}">
|
||||
<td class="num">{$no}</td>
|
||||
<td class="title">
|
||||
<a href="{getUrl('','document_srl',$val->document_srl)}" onclick="window.open(this.href);return false;">{htmlspecialchars($val->title)}</a>
|
||||
</td>
|
||||
<td class="author"><div class="member_{$val->target_member_srl}">{$val->nick_name}</div></td>
|
||||
<td class="registDate">{zdate($val->regdate, "Y-m-d H:i")}</td>
|
||||
</tr>
|
||||
<!--@end-->
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<!-- 버튼 -->
|
||||
<div class="clear fr gap1">
|
||||
<a href="{getUrl('act','','selected_module_srl','')}" class="button"><span>{$lang->cmd_back}</span></a>
|
||||
</div>
|
||||
|
||||
<!-- 페이지 네비게이션 -->
|
||||
<div class="pageNavigation">
|
||||
<a href="{getUrl('page','','module_srl','')}" class="goToFirst"><img src="./images/bottomGotoFirst.gif" alt="{$lang->first_page}" width="7" height="5" /></a>
|
||||
<!--@while($page_no = $page_navigation->getNextPage())-->
|
||||
<!--@if($page == $page_no)-->
|
||||
<span class="current">{$page_no}</span>
|
||||
<!--@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="goToLast"><img src="./images/bottomGotoLast.gif" alt="{$lang->last_page}" width="7" height="5" /></a>
|
||||
</div>
|
||||
|
||||
<!--#include("./common_footer.html")-->
|
||||
Loading…
Add table
Add a link
Reference in a new issue