rhymix/modules/member/tpl/group_update_form.html

34 lines
1.4 KiB
HTML

<!--#include("header.html")-->
<!--%import("filter/update_group.xml")-->
<!-- 그룹 수정 -->
<!--@if($selected_group)-->
<form action="./" method="get" onsubmit="return procFilter(this, update_group)">
<input type="hidden" name="group_srl" value="{$selected_group->group_srl}" />
<input type="hidden" name="mode" value="update" />
<!--@if($selected_group->is_default=='Y')--><input type="hidden" name="is_default" value="Y" /><!--@end-->
<table cellspacing="0" class="adminTable">
<tr>
<th scope="row"><div>{$lang->group_title}</div></th>
<td class="left"><input type="text" name="title" class="inputTypeText w400" value="{$selected_group->title}"/></td>
</tr>
<!--@if($selected_group->is_default!='Y' && $selected_group->is_admin!='Y')-->
<tr>
<th scope="row"><div>{$lang->is_default}</div></th>
<td class="left"><input type="checkbox" name="is_default" value="Y" class="checkbox" /> {$lang->about_member_default}</td>
</tr>
<!--@end-->
<tr>
<th scope="row"><div>{$lang->description}</div></th>
<td class="left"><textarea name="description" class="inputTypeTextArea w400">{$selected_group->description}</textarea></td>
</tr>
<tr>
<td colspan="2" class="right">
<span class="button"><input type="submit" value="{$lang->cmd_modify}" accesskey="s" /></span>
</td>
</tr>
</table>
</form>
<!--@end-->