mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-14 00:39:57 +09:00
95 lines
3.5 KiB
HTML
95 lines
3.5 KiB
HTML
<!--%import("filter/delete_checked.xml")-->
|
|
<!--%import("js/document_admin.js")-->
|
|
|
|
<!-- 문서 정보 -->
|
|
<div>
|
|
{$lang->document_count} : {number_format($total_count)},
|
|
{$lang->page_count} : {number_format($page)} / {number_format($total_page)}
|
|
</div>
|
|
|
|
<form id="fo_list" action="./" method="get" onsubmit="return procFilter(this, delete_checked)">
|
|
<input type="hidden" name="page" value="{$page}" />
|
|
|
|
<!-- 목록 -->
|
|
<div>
|
|
<table>
|
|
<tr>
|
|
<th>{$lang->no}</th>
|
|
<th><input type="checkbox" onclick="doCheckAll(); return false;" /></th>
|
|
<th>{$lang->module}</th>
|
|
<th>{$lang->title}</th>
|
|
<th>{$lang->user_name}</th>
|
|
<th>{$lang->readed_count}</th>
|
|
<th>{$lang->voted_count}</th>
|
|
<th>{$lang->date}</th>
|
|
</tr>
|
|
|
|
<!--@foreach($document_list as $no => $oDocument)-->
|
|
<tr>
|
|
<td>{$no}</td>
|
|
<td><input type="checkbox" name="cart" value="{$oDocument->document_srl}" /></td>
|
|
<td><a href="#" onclick="window.open('./?mid={$module_list[$oDocument->get('module_srl')]->mid}');return false">{htmlspecialchars($module_list[$oDocument->get('module_srl')]->browser_title)}</a></td>
|
|
<td>
|
|
<a href="#" onclick="window.open('./?document_srl={$oDocument->document_srl}');return false">{$oDocument->getTitleText()}</a>
|
|
|
|
<!--@if($oDocument->getCommentCount())-->
|
|
[{$oDocument->getCommentCount()}]
|
|
<!--@end-->
|
|
|
|
<!--@if($oDocument->getTrackbackCount())-->
|
|
[{$oDocument->getTrackbackCount()}]
|
|
<!--@end-->
|
|
</td>
|
|
<td><div class="member_{$oDocument->get('member_srl')}">{$oDocument->getUserName()}</div></td>
|
|
<td>{$oDocument->get('readed_count')}</td>
|
|
<td>{$oDocument->get('voted_count')}</td>
|
|
<td>{$oDocument->getRegdate("Y-m-d")}</td>
|
|
</tr>
|
|
<!--@end-->
|
|
|
|
</table>
|
|
</div>
|
|
|
|
<!-- 버튼 -->
|
|
<div>
|
|
<input type="submit" value="{$lang->cmd_delete_checked_document}" />
|
|
</div>
|
|
|
|
</form>
|
|
|
|
<!-- 검색 -->
|
|
<div>
|
|
<form action="./" method="get">
|
|
<input type="hidden" name="module" value="{$module}" />
|
|
<input type="hidden" name="mo" value="{$mo}" />
|
|
<input type="hidden" name="act" value="{$act}" />
|
|
|
|
<div>
|
|
<select name="search_target">
|
|
<option value="">{$lang->search_target}</option>
|
|
<!--@foreach($lang->search_target_list as $key => $val)-->
|
|
<option value="{$key}" <!--@if($search_target==$key)-->selected="true"<!--@end-->>{$val}</option>
|
|
<!--@end-->
|
|
</select>
|
|
<input type="text" name="search_keyword" value="{htmlspecialchars($search_keyword)}" />
|
|
<input type="submit" value="{$lang->cmd_search}" />
|
|
<input type="button" value="{$lang->cmd_cancel}" onclick="location.href='{getUrl('','module',$module,'act',$act)}'"/>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
|
|
|
|
<!-- 페이지 네비게이션 -->
|
|
<div>
|
|
<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>
|