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

@ -1,10 +1,7 @@
<!--#include("header.html")-->
<!--%import("filter/insert_group.xml")-->
<!--%import("filter/update_group.xml")-->
<div>
{$lang->cmd_member_group}
</div>
<!--#include("header.html")-->
<!-- 그룹의 삭제와 관련된 form -->
<form id="fo_group_info" action="./" method="get">
@ -13,16 +10,18 @@
<input type="hidden" name="mode" value="" />
</form>
<div>
<table border="1">
<table cellspacing="0" class="tableType1 gap1">
<thead>
<tr>
<th>{$lang->group_title}</th>
<th>{$lang->regdate}</th>
<th>{$lang->description}</th>
<th>{$lang->is_default}</th>
<th>{$lang->cmd_modify}</th>
<th>{$lang->cmd_delete}</th>
<th scope="col">{$lang->group_title}</th>
<th scope="col">{$lang->regdate}</th>
<th scope="col">{$lang->description}</th>
<th scope="col">{$lang->is_default}</th>
<th scope="col">{$lang->cmd_modify}</th>
<th scope="col">{$lang->cmd_delete}</th>
</tr>
</thead>
<tbody>
<!--@if(!count($group_list))-->
<tr>
<td colspan="7">{$lang->msg_group_is_null}</td>
@ -31,33 +30,47 @@
<!--@foreach($group_list as $group_srl => $group_info)-->
<tr>
<td>{$group_info->title}</td>
<td>{zdate($group_info->regdate,"Y-m-d H:i:s")}</td>
<td>{nl2br($group_info->description)}</td>
<td>{$group_info->is_default}</td>
<td><a href="{getUrl('group_srl',$group_info->group_srl)}">{$lang->cmd_modify}</a></td>
<td>
<td class="tahoma">{zdate($group_info->regdate,"Y-m-d H:i:s")}</td>
<td>{nl2br($group_info->description)}&nbsp;</td>
<td class="tahoma">{$group_info->is_default}</td>
<td class="tahoma blue"><a href="{getUrl('group_srl',$group_info->group_srl)}">{$lang->cmd_modify}</a></td>
<td class="tahoma red">
<!--@if($group_info->is_default!='Y' && $group_info->is_admin !='Y')-->
<a href="#" onclick="doUpdateGroup('{$group_info->group_srl}','delete','{$lang->confirm_delete}');return false;">{$lang->cmd_delete}</a>
<!--@else-->
&nbsp;
<!--@end-->
</td>
</tr>
<!--@end-->
</table>
</div>
</tbody>
</table>
<br />
<!-- 그룹 추가 -->
<form action="./" method="get" onsubmit="return procFilter(this, insert_group)">
<input type="hidden" name="page" value="{$page}" />
<input type="hidden" name="group_srl" value="" />
<div>
{$lang->group_title} : <input type="text" name="title" /><br />
{$lang->is_default} : <input type="checkbox" name="is_default" value="Y" /><br />
{$lang->description} :<input type="text" name="description" /><br />
<input type="submit" value="{$lang->cmd_registration}" accesskey="s" />
</div>
<table cellspacing="0" class="tableType3 gap1">
<col width="150" />
<col />
<tr>
<th scope="row">{$lang->group_title}</th>
<td class="left"><input type="text" name="title" class="inputTypeText w100" /></td>
</tr>
<tr>
<th scope="row">{$lang->is_default}</th>
<td class="left"><input type="checkbox" name="is_default" value="Y" class="checkbox" /> {$lang->about_member_default}</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>
</form>