mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 01:01:41 +09:00
24 lines
1.2 KiB
HTML
24 lines
1.2 KiB
HTML
<include target="./common_header.html" />
|
|
<div class="xm">
|
|
<h2 class="hx h2">{$member_title = $lang->cmd_view_own_comment}</h2>
|
|
<ul class="lt">
|
|
<li loop="$comment_list => $no,$comment">
|
|
<a href="{getUrl('','document_srl',$comment->document_srl)}#comment_{$comment->comment_srl}" target="_blank">
|
|
{$comment->getSummary(50, '...', $lang->msg_no_text_comment)}
|
|
<span class="memberInfo">{$comment->getRegdate("Y-m-d")}</span>
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
<form class="search" action="{Context::getRequestUri()}" method="get" no-error-return-url="true">
|
|
<input type="hidden" name="mid" value="{$mid}" />
|
|
<input type="hidden" name="act" value="{$act}" />
|
|
<input type="search" name="search_keyword" value="{escape($search_keyword, false)}">
|
|
<button type="submit">{$lang->cmd_search}</button>
|
|
</form>
|
|
<div class="pn">
|
|
<a cond="$page != 1" href="{getUrl('page',$page-1,'module_srl','','document_srl','')}" class="prev">{$lang->cmd_prev}</a>
|
|
<strong>{$page} / {$page_navigation->last_page}</strong>
|
|
<a cond="$page != $page_navigation->last_page" href="{getUrl('page',$page+1,'module_srl','','document_srl','')}" class="next">{$lang->cmd_next}</a>
|
|
</div>
|
|
</div>
|
|
<include target="./common_footer.html" />
|