rhymix/modules/member/skins/default/saved_list_popup.html
2007-11-01 10:28:42 +00:00

63 lines
2.6 KiB
HTML

<!--#include("./common_header.html")-->
<div class="memberSmallBox w600pop">
<div class="header">
<h3>{$lang->cmd_view_saved_document}</h3>
</div>
<div class="complex">
<!-- 정보 -->
<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="120" />
<col />
<col width="100" />
<thead>
<tr>
<th scope="col">{$lang->date}</th>
<th scope="col">{$lang->title}</th>
<th scope="col">{$lang->cmd_select}</th>
</tr>
</thead>
<tbody>
<!--@foreach($document_list as $no => $val)-->
<tr class="bg{($no+1)%2+1}">
<td class="registDate">{$val->getRegdate("Y-m-d H:i:s")}</td>
<td class="subject">
<div><a href="#" onclick="toggleDisplay('saved_document_{$val->document_srl}','block'); setFixedPopupSize(); return false;">{$val->getTitle()}</a></div>
<div id="saved_document_{$val->document_srl}" class="saved_content" style="display:none;">{$val->getContent(false)}</div>
</td>
<td><a href="#" onclick="doDocumentSelect('{$val->document_srl}'); return false;" class="button"><span>{$lang->cmd_select}</span></a></td>
</tr>
<!--@end-->
</tbody>
</table>
<!-- 페이지 네비게이션 -->
<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>
</div>
<div class="tCenter help">
<a href="#" onclick="window.close(); return false;" class="button"><span>{$lang->cmd_close}</span></a>
</div>
</div>
<!--#include("./common_footer.html")-->