git-svn-id: http://xe-core.googlecode.com/svn/trunk@1761 201d5d3c-b55e-5fd7-737f-ddc643e51545

This commit is contained in:
zero 2007-06-25 10:37:11 +00:00
parent c92102f8fe
commit b7ec12f4c2
45 changed files with 899 additions and 790 deletions

View file

@ -3,9 +3,8 @@
<!--%import("filter/update_denied_id.xml")-->
<!-- 정보 -->
<div>
{number_format($total_count)},
{$lang->page_count} : {number_format($page)} / {number_format($total_page)}
<div class="tableSummaryType1">
Total <strong>{number_format($total_count)}</strong>, Page <strong>{number_format($page)}</strong>/{number_format($total_page)}
</div>
<!-- 금지아이디의 삭제와 관련된 form -->
@ -15,40 +14,40 @@
</form>
<!-- 목록 -->
<div>
<table border="1">
<table cellspacing="0" class="tableType1 gap1">
<thead>
<tr>
<th>{$lang->no}</th>
<th>{$lang->user_id}</th>
<th>{$lang->regdate}</th>
<th>{$lang->description}</th>
<th>{$lang->cmd_delete}</th>
<th scope="col">{$lang->no}</th>
<th scope="col">{$lang->user_id}</th>
<th scope="col">{$lang->regdate}</th>
<th scope="col">{$lang->description}</th>
<th scope="col">{$lang->cmd_delete}</th>
</tr>
</thead>
<tbody>
<!--@foreach($member_list as $no => $val)-->
<tr>
<td>{$no}</td>
<td>{$val->user_id}</td>
<td>{zdate($val->regdate,"Y-m-d")}</td>
<td class="tahoma">{$no}</td>
<td class="tahoma">{$val->user_id}</td>
<td class="tahoma">{zdate($val->regdate,"Y-m-d")}</td>
<td>{$val->description}</td>
<td><a href="#" onclick="doUpdateDeniedID('{$val->user_id}','delete','{$lang->confirm_delete}');return false;">{$lang->cmd_delete}</a></td>
<td class="tahoma red"><a href="#" onclick="doUpdateDeniedID('{$val->user_id}','delete','{$lang->confirm_delete}');return false;">{$lang->cmd_delete}</a></td>
</tr>
<!--@end-->
</table>
</div>
</tbody>
</table>
<!-- 페이지 네비게이션 -->
<div>
<a href="{getUrl('page','','member_srl','')}">[{$lang->first_page}]</a>
<div class="pageNavigation">
<a href="{getUrl('page','','module_srl','')}" class="goToFirst"><img src="../../admin/tpl/images/bottomGotoFirst.gif" alt="{$lang->first_page}" width="7" height="5" /></a>
<!--@while($page_no = $page_navigation->getNextPage())-->
<!--@if($page == $page_no)-->
{$page_no}
<span class="current">{$page_no}</span>
<!--@else-->
<a href="{getUrl('page',$page_no,'member_srl','')}">[{$page_no}]</a>
<a href="{getUrl('page',$page_no,'module_srl','')}">{$page_no}</a>
<!--@end-->
<!--@end-->
<a href="{getUrl('page',$page_navigation->last_page,'member_srl','')}">[{$lang->last_page}]</a>
<a href="{getUrl('page',$page_navigation->last_page,'module_srl','')}" class="goToLast"><img src="../../admin/tpl/images/bottomGotoLast.gif" alt="{$lang->last_page}" width="7" height="5" /></a>
</div>
<!-- 금지 아이디 추가 -->
@ -56,9 +55,22 @@
<input type="hidden" name="page" value="{$page}" />
<div>
{$lang->user_id} : <input type="text" name="user_id" /><br />
{$lang->description} :<input type="text" name="description" /><br />
<input type="submit" value="{$lang->cmd_registration}" accesskey="s" />
<table cellspacing="0" class="tableType3 gap1">
<col width="150" />
<col />
<tr>
<th scope="row">{$lang->user_id}</th>
<td class="left"><input type="text" name="user_id" class="inputTypeText w100" /></td>
</tr>
<tr>
<th scope="row">{$lang->description}</th>
<td class="left"><textarea name="description" class="inputTypeTextArea w100"></textarea></td>
</tr>
</table>
<div class="buttonRight">
<span class="buttonTypeA"><img src="../../admin/tpl/images/blank.gif" alt="" class="leftCap" /><img src="../../admin/tpl/images/iconCreate.gif" alt="" width="8" height="4" class="icon" /><input type="submit" value="{$lang->cmd_registration}" accesskey="s" /><img src="../../admin/tpl/images/blank.gif" alt="" class="rightCap" /></span>
</div>
</div>
</form>