mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-15 17:29:55 +09:00
75 lines
2.8 KiB
HTML
75 lines
2.8 KiB
HTML
<!--%import("filter/insert_group.xml")-->
|
|
<!--%import("filter/update_group.xml")-->
|
|
|
|
<!--#include("header.html")-->
|
|
|
|
<!-- 그룹의 삭제와 관련된 form -->
|
|
<form id="fo_group_info" action="./" method="get">
|
|
<input type="hidden" name="act" value="procMemberAdminUpdateGroup" />
|
|
<input type="hidden" name="group_srl" value="" />
|
|
<input type="hidden" name="mode" value="" />
|
|
</form>
|
|
|
|
<table cellspacing="0" class="adminTable">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col" class="half_wide"><div>{$lang->group_title}</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>{$lang->is_default}</div></th>
|
|
<th scope="col" colspan="2"><div> </div></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<!--@if(!count($group_list))-->
|
|
<tr>
|
|
<td colspan="7">{$lang->msg_group_is_null}</td>
|
|
</tr>
|
|
<!--@end-->
|
|
<!--@foreach($group_list as $group_srl => $group_info)-->
|
|
<tr class="row{$cycle_idx}">
|
|
<td class="nowrap">{$group_info->title}</td>
|
|
<td>{nl2br($group_info->description)} </td>
|
|
<td class="date center nowrap">{zdate($group_info->regdate,"Y-m-d H:i:s")}</td>
|
|
<td class="center number"><!--@if($group_info->is_default=='Y')-->Y<!--@else--> <!--@end--></td>
|
|
<td class="modify"><a href="{getUrl('group_srl',$group_info->group_srl)}">{$lang->cmd_modify}</a></td>
|
|
<td class="delete">
|
|
<!--@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-->
|
|
|
|
<!--@end-->
|
|
</td>
|
|
</tr>
|
|
<!--@end-->
|
|
</tbody>
|
|
</table>
|
|
|
|
|
|
<!-- 그룹 추가 -->
|
|
<form action="./" method="get" onsubmit="return procFilter(this, insert_group)">
|
|
<input type="hidden" name="page" value="{$page}" />
|
|
<input type="hidden" name="group_srl" value="" />
|
|
|
|
<table cellspacing="0" class="adminTable">
|
|
<tr>
|
|
<th scope="row"><div>{$lang->group_title}</div></th>
|
|
<td class="wide"><input type="text" name="title" class="inputTypeText w400" /></td>
|
|
</tr>
|
|
<tr class="row2">
|
|
<th scope="row"><div>{$lang->is_default}</div></th>
|
|
<td><input type="checkbox" name="is_default" value="Y" class="checkbox" /> {$lang->about_member_default}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><div>{$lang->description}</div></th>
|
|
<td><textarea name="description" class="inputTypeTextArea w400"></textarea></td>
|
|
</tr>
|
|
<tr class="row2">
|
|
<td colspan="2" class="right">
|
|
<span class="button"><input type="submit" value="{$lang->cmd_registration}" accesskey="s" /></span>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
|
|
</form>
|