mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 01:01:41 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/branches/maserati@12575 201d5d3c-b55e-5fd7-737f-ddc643e51545
32 lines
1.5 KiB
HTML
32 lines
1.5 KiB
HTML
<include target="./common_header.html" />
|
|
<h1>{$member_title = $lang->cmd_view_saved_document}</h1>
|
|
<table class="table table-striped table-hover">
|
|
<caption>Total: {number_format($total_count)}, Page: {number_format($page)}/{number_format($total_page)}</caption>
|
|
<thead>
|
|
<tr>
|
|
<th class="title">{$lang->title}</th>
|
|
<th>{$lang->date}</th>
|
|
<th>{$lang->cmd_delete}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr loop="$document_list => $no,$val">
|
|
<td class="title">
|
|
<a href="#saved_document_{$val->document_srl}" onclick="jQuery('#saved_document_{$val->document_srl}').toggle(); return false;">{$val->getTitle()}</a>
|
|
<div id="saved_document_{$val->document_srl}" class="savedContent" style="display:none;">{$val->getContent(false)}</div>
|
|
</td>
|
|
<td>{$val->getRegdate("Y-m-d")}</td>
|
|
<td><button type="button" class="text" onclick="doDeleteSavedDocument('{$val->document_srl}','{$lang->confirm_delete}');">{$lang->cmd_delete}</button></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<div class="pagination pagination-centered">
|
|
<ul>
|
|
<li><a href="{getUrl('page','','module_srl','')}" class="direction">« {$lang->first_page}</a></li>
|
|
<!--@while($page_no = $page_navigation->getNextPage())-->
|
|
<li class="active"|cond="$page == $page_no"><a href="{getUrl('page',$page_no,'module_srl','')}">{$page_no}</a></li>
|
|
<!--@end-->
|
|
<li><a href="{getUrl('page',$page_navigation->last_page,'module_srl','')}" class="direction">{$lang->last_page} »</a></li>
|
|
</ul>
|
|
</div>
|
|
<include target="./common_footer.html" />
|