mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-17 10:19:55 +09:00
35 lines
944 B
HTML
35 lines
944 B
HTML
<!--#include("header.html")-->
|
|
|
|
<!-- 목록 -->
|
|
<div>
|
|
<!--@if($document_list)-->
|
|
<!--@foreach($document_list as $no => $document)-->
|
|
<!--@if($document && $grant->list)-->
|
|
<!--#include("./view_document.html")-->
|
|
<!--@end-->
|
|
<!--@end-->
|
|
<!--@else-->
|
|
{$lang->no_documents}
|
|
<!--@end-->
|
|
</div>
|
|
|
|
<!--@if($grant->list)-->
|
|
|
|
<!-- 페이지 네비게이션 -->
|
|
<div style="margin-top:20px;text-align:center">
|
|
<a href="{getUrl('page','','document_srl','')}">[{$lang->first_page}]</a>
|
|
|
|
<!--@while($page_no = $page_navigation->getNextPage())-->
|
|
<!--@if($page == $page_no)-->
|
|
{$page_no}
|
|
<!--@else-->
|
|
<a href="{getUrl('page',$page_no,'document_srl','')}">[{$page_no}]</a>
|
|
<!--@end-->
|
|
<!--@end-->
|
|
|
|
<a href="{getUrl('page',$page_navigation->last_page,'document_srl','')}">[{$lang->last_page}]</a>
|
|
</div>
|
|
|
|
<!--@end-->
|
|
|
|
<!--#include("footer.html")-->
|