mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-08 03:01:43 +09:00
71 lines
2.4 KiB
HTML
71 lines
2.4 KiB
HTML
<div class="x_page-header">
|
|
<h1>{$lang->cmd_trash} {$lang->trash_description}</h1>
|
|
</div>
|
|
<h2>{$lang->delete_info}</h2>
|
|
<table class="x_table x_table-striped x_table-hover">
|
|
<col width="120">
|
|
<tr>
|
|
<th scope="col" class="nowr">{$lang->trasher}</th>
|
|
<td>
|
|
{@
|
|
$oMemberModel = &getModel('member');
|
|
$remover_info = $oMemberModel->getMemberInfoByMemberSrl($oTrashVO->getRemoverSrl());
|
|
}
|
|
{htmlspecialchars($remover_info->nick_name)} <a href="#popup_menu_area" class="member_{$oTrashVO->getRemoverSrl()}" onclick="return false">[{$remover_info->user_id}]</a>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="col" class="nowr">{$lang->trash_date}</th>
|
|
<td>{zdate($oTrashVO->getRegdate(), "Y-m-d H:i:s")}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">{$lang->trash_description}</th>
|
|
<td class="text">{$oTrashVO->getDescription()}</td>
|
|
</tr>
|
|
</table>
|
|
<br>
|
|
<h2>{$lang->origin_info}</h2>
|
|
<table class="x_table x_table-striped x_table-hover">
|
|
<col width="120">
|
|
<tr>
|
|
<th scope="row">{$lang->title}</th>
|
|
<td class="text">{$oOrigin->title}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">{$lang->writer}</th>
|
|
<td class="text">{htmlspecialchars($oOrigin->nick_name)} <a href="#popup_menu_area" class="member_{$oOrigin->member_srl}" onclick="return false">[{$oOrigin->user_id}]</a></td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">{$lang->regdate}</th>
|
|
<td class="text">{zdate($oOrigin->regdate,'Y.m.d H:i:s')}</td>
|
|
</tr>
|
|
<block loop="$oOriginExtraVars=>$key,$val">
|
|
<tr><th>{$val->name}</th>
|
|
<td>{$val->value}</td>
|
|
</tr>
|
|
</block>
|
|
|
|
<tr>
|
|
<th scope="row">{$lang->content}</th>
|
|
<td class="text">{$oOrigin->content}</td>
|
|
</tr>
|
|
</table>
|
|
|
|
|
|
<form action="./" method="post">
|
|
<input type="hidden" name="module" value="trash" />
|
|
<input type="hidden" name="act" value="procTrashAdminEmptyTrash" />
|
|
<input type="hidden" name="page" value="{$page}" />
|
|
<input type="hidden" name="is_all" value="false" />
|
|
<input type="hidden" name="origin_module" value="{$oTrashVO->getOriginModule()}" />
|
|
|
|
<input type="hidden" name="cart[]" value="{$oTrashVO->getTrashSrl()}" />
|
|
|
|
<div class="x_pull-left"><button class="x_btn" type="button" onclick="history.go(-1)">{$lang->cmd_list}</button></div>
|
|
|
|
<div class="x_pull-right">
|
|
<button type="submit" name="is_all" class="x_btn" value="false">{$lang->cmd_delete}</button>
|
|
<button type="submit" name="act" class="x_btn x_btn-primary" value="procTrashAdminRestore">{$lang->cmd_restore}</button>
|
|
</div>
|
|
</form>
|
|
|