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
46 lines
2.6 KiB
HTML
46 lines
2.6 KiB
HTML
<!--#include("header.html")-->
|
|
<!--%load_js_plugin("filebox")-->
|
|
|
|
<!-- 그룹 수정 -->
|
|
<!--@if($selected_group)-->
|
|
<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="updateGroup" action="./" method="post">
|
|
<input type="hidden" name="act" value="procMemberAdminUpdateGroup" />
|
|
<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="rowTable">
|
|
<tr>
|
|
<th scope="row"><div>{$lang->group_title}</div></th>
|
|
<td class="left"><input type="text" name="title" id="title" class="inputTypeText w400 lang_code" value="{$selected_group->title}"/></td>
|
|
</tr>
|
|
<!--@if($selected_group->is_default!='Y' && $selected_group->is_admin!='Y')-->
|
|
<tr class="row2">
|
|
<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>
|
|
<th scope="row"><div>{$lang->group_image_mark}</div></th>
|
|
<td class="left">
|
|
<div id="filebox_preview_image_mark" style="width:100px;height:100px;<!--@if(!$selected_group->image_mark)-->display:none<!--@endif-->"></div>
|
|
<input type="hidden" name="image_mark" value="{$selected_group->image_mark}" />
|
|
<span class="button black"><button type="button" onclick="XE.filebox.open(jQuery('[name=image_mark]').get(0), 'jpg,jpeg,gif,png')">{$lang->cmd_select}</button></span>
|
|
<span id="filebox_cancel_image_mark" class="button red"<!--@if(!$selected_group->image_mark)--> style="display:none" <!--@endif-->><button type="button" onclick="XE.filebox.cancel('image_mark')">{$lang->cmd_delete}</button></span>
|
|
<script type="text/javascript">//<![CDATA[
|
|
XE.filebox.init('image_mark');
|
|
//]]></script>
|
|
</td>
|
|
</tr>
|
|
<tr class="row2">
|
|
<th colspan="2" class="button">
|
|
<span class="button black strong"><input type="submit" value="{$lang->cmd_modify}" accesskey="s" /></span>
|
|
</th>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
<!--@end-->
|