rhymix/modules/wiki/skins/xe_wiki/histories.html
2009-04-01 08:38:38 +00:00

46 lines
1.1 KiB
HTML

<!--#include("header.html")-->
<div class="readBody">
<table>
<tr>
<!--@if($page == 1)-->
<td>
{$oDocument->getUpdate()}
</td>
<td>
by {$oDocument->getNickName()} (current)
</td>
<td>
<a href="{getUrl('act','',page,'')}">[View]</a>
</td>
</tr>
<!--@endif-->
<!--@foreach($histories as $val)-->
<tr>
<td>
{zdate($val->regdate, 'Y.m.d H:i:s')}
</td>
<td>
by {$val->nick_name}
</td>
<td>
<!--@if($val->content)-->
<a href="{getUrl('act','',page,'',history_srl,$val->history_srl)}">[View]</a>
<!--@end-->
</td>
</tr>
<!--@end-->
</table>
</div>
<div class="pagination a1">
<a href="{getUrl('page','')}" class="prevEnd">{$lang->first_page}</a>
<!--@while($page_no = $page_navigation->getNextPage())-->
<!--@if($page == $page_no)-->
<strong>{$page_no}</strong>
<!--@else-->
<a href="{getUrl('page',$page_no)}">{$page_no}</a>
<!--@end-->
<!--@end-->
<a href="{getUrl('page',$page_navigation->last_page)}" class="nextEnd">{$lang->last_page}</a>
</div>
<!--#include("footer.html")-->