mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-07 10:41:40 +09:00
20 lines
No EOL
1 KiB
HTML
20 lines
No EOL
1 KiB
HTML
<include target="_header.html" />
|
|
<div cond="$oComment->isExists()" class="context_data">
|
|
<h3 class="author">
|
|
<a cond="$oComment->homepage" href="{$oComment->homepage}">{$oComment->getNickName()}</a>
|
|
<strong cond="!$oComment->homepage">{$oComment->getNickName()}</strong>
|
|
</h3>
|
|
{$oComment->getContent(false)}
|
|
</div>
|
|
<form action="./" method="get" onsubmit="return procFilter(this, delete_comment)" class="context_message">
|
|
<input type="hidden" name="mid" value="{$mid}" />
|
|
<input type="hidden" name="page" value="{$page}" />
|
|
<input type="hidden" name="document_srl" value="{$oComment->get('document_srl')}" />
|
|
<input type="hidden" name="comment_srl" value="{$oComment->get('comment_srl')}" />
|
|
<h1>{sprintf($lang->comfirm_act_msg,$lang->comment,$lang->cmd_delete,$lang->msg_eul)}</h1>
|
|
<div class="btnArea">
|
|
<input type="submit" class="btn" value="{$lang->cmd_delete}" />
|
|
<button type="button" class="btn" onclick="history.back()">{$lang->cmd_cancel}</button>
|
|
</div>
|
|
</form>
|
|
<include target="_footer.html" /> |