mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-07 10:41:40 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@8616 201d5d3c-b55e-5fd7-737f-ddc643e51545
71 lines
2.7 KiB
HTML
71 lines
2.7 KiB
HTML
<!--#include("header.html")-->
|
|
<!--%import("filter/update_denied_id.xml")-->
|
|
|
|
<!-- 금지아이디의 삭제와 관련된 form -->
|
|
<form id="fo_denied_id_info" action="./" method="get">
|
|
<input type="hidden" name="user_id" value="" />
|
|
<input type="hidden" name="mode" value="" />
|
|
</form>
|
|
|
|
<!-- 목록 -->
|
|
<table cellspacing="0" class="rowTable">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col"><div>{$lang->no}</div></th>
|
|
<th scope="col" class="half_wide"><div>{$lang->user_id}</div></th>
|
|
<th scope="col" class="half_wide"><div>{$lang->description}</div></th>
|
|
<th scope="col"><div>{$lang->regdate}</div></th>
|
|
<th scope="col"><div> </div></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<!--@foreach($member_list as $no => $val)-->
|
|
<tr class="row{$cycle_idx}">
|
|
<td>{$no}</td>
|
|
<td>{$val->user_id}</td>
|
|
<td>{$val->description} </td>
|
|
<td>{zdate($val->regdate,"Y-m-d")}</td>
|
|
<td><a href="#" onclick="doUpdateDeniedID('{$val->user_id}','delete','{$lang->confirm_delete}');return false;" title="{$lang->cmd_delete}" class="buttonSet buttonDelete"><span>{$lang->cmd_delete}</span></a></td>
|
|
</tr>
|
|
<!--@end-->
|
|
</tbody>
|
|
</table>
|
|
|
|
<!-- 페이지 네비게이션 -->
|
|
<div class="pagination a1">
|
|
<a href="{getUrl('page','','module_srl','')}" 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,'module_srl','')}">{$page_no}</a>
|
|
<!--@end-->
|
|
<!--@end-->
|
|
<a href="{getUrl('page',$page_navigation->last_page,'module_srl','')}" class="nextEnd">{$lang->last_page}</a>
|
|
</div>
|
|
|
|
<!-- 금지 아이디 추가 -->
|
|
<p cond="$XE_VALIDATOR_MESSAGE" class="xe_validator_message"|cond="!$XE_VALIDATOR_ERROR" class="xe_validator_error"|cond="$XE_VALIDATOR_ERROR">{$XE_VALIDATOR_MESSAGE}</p>
|
|
<form ruleset="insertDeniedId" action="./" method="post">
|
|
<input type="hidden" name="act" value="procMemberAdminInsertDeniedID" />
|
|
<input type="hidden" name="page" value="{$page}" />
|
|
|
|
<div>
|
|
<table cellspacing="0" class="rowTable">
|
|
<tr>
|
|
<th scope="row"><div>{$lang->user_id}</div></th>
|
|
<td class="wide"><input type="text" name="user_id" class="inputTypeText w400" /></td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><div>{$lang->description}</div></th>
|
|
<td class="left"><textarea name="description" class="inputTypeTextArea w400"></textarea></td>
|
|
</tr>
|
|
<tr>
|
|
<th colspan="2" class="button">
|
|
<span class="button black strong"><input type="submit" value="{$lang->cmd_registration}" accesskey="s" /></span>
|
|
</th>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
|
|
</form>
|