mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-03 16:51:40 +09:00
변경전의 xe.less 파일도 rhymix.less와 함께 load 하여 호환정 유지
CSS 충돌 예)
bootstrap의 .btn
사용 예)
bootstrap 사용시엔 {Context::unloadBasicFiles('xe')}으로 unload 시키면 문제없음
28 lines
1.5 KiB
HTML
28 lines
1.5 KiB
HTML
<load target="css/communication.css" />
|
|
<load target="js/communication.js" />
|
|
<div class="xc">
|
|
<h1 style="border-bottom:1px solid #ccc">
|
|
<!--@if($friend_group->friend_group_srl)-->
|
|
{$lang->cmd_rename_friend_group}
|
|
<!--@else-->
|
|
{$lang->cmd_add_friend_group}
|
|
<!--@end-->
|
|
</h1>
|
|
<div cond="$XE_VALIDATOR_MESSAGE && $XE_VALIDATOR_ID == 'modules/communication/skins/default/add_friend_group/1'" class="rhymix_message {$XE_VALIDATOR_MESSAGE_TYPE}">
|
|
<p>{$XE_VALIDATOR_MESSAGE}</p>
|
|
</div>
|
|
<form ruleset="addFriendGroup" action="./" method="post" class="form-horizontal">
|
|
<input type="hidden" name="module" value="communication" />
|
|
<input type="hidden" name="act" value="procCommunicationAddFriendGroup" />
|
|
<input type="hidden" name="friend_group_srl" value="{$friend_group->friend_group_srl}" />
|
|
<input type="hidden" name="xe_validator_id" value="modules/communication/skins/default/add_friend_group/1" />
|
|
<div class="control-group">
|
|
<label for="title" class="control-label">{$lang->msg_insert_group_name}</label>
|
|
<div class="controls"><input name="title" id="title" type="text" value="{htmlspecialchars($friend_group->title, ENT_COMPAT | ENT_HTML401, 'UTF-8', false)}"/></div>
|
|
</div>
|
|
<div class="rhymix_button_wrapper">
|
|
<input cond="$friend_group->friend_group_srl" type="submit" value="{$lang->cmd_modify}" class="rhymix_button inverse" />
|
|
<input cond="!$friend_group->friend_group_srl" type="submit" value="{$lang->cmd_insert}" class="rhymix_button inverse" />
|
|
</div>
|
|
</form>
|
|
</div>
|