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 시키면 문제없음
34 lines
1.6 KiB
HTML
34 lines
1.6 KiB
HTML
<load target="filter/add_friend.xml" />
|
|
<load target="css/communication.css" />
|
|
<load target="js/communication.js" />
|
|
<div class="xc">
|
|
<h1>{$lang->cmd_add_friend}</h1>
|
|
<div cond="$XE_VALIDATOR_MESSAGE && $XE_VALIDATOR_ID == 'modules/communication/skins/default/add_friend/1'" class="rhymix_message {$XE_VALIDATOR_MESSAGE_TYPE}">
|
|
<p>{$XE_VALIDATOR_MESSAGE}</p>
|
|
</div>
|
|
<form ruleset="addFriend" action="./" method="post">
|
|
<input type="hidden" name="module" value="communication" />
|
|
<input type="hidden" name="act" value="procCommunicationAddFriend" />
|
|
<input type="hidden" name="target_srl" value="{$target_info->member_srl}" />
|
|
<input type="hidden" name="xe_validator_id" value="modules/communication/skins/default/add_friend/1" />
|
|
<table class="table table-striped table-hover">
|
|
<tr>
|
|
<th scope="row">{$lang->nick_name}</th>
|
|
<td>{$target_info->nick_name}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><label for="friend_group_srl">{$lang->friend_group}</label></th>
|
|
<td>
|
|
<select name="friend_group_srl" id="friend_group_srl">
|
|
<option value="">{$lang->default_friend_group}</option>
|
|
<option loop="$friend_group_list => $key,$val" value="{$val->friend_group_srl}">{$val->title}</option>
|
|
</select>
|
|
<a href="{getUrl('act','dispCommunicationAddFriendGroup')}" class="rhymix_button" onclick="popopen(this.href);return false;">{$lang->cmd_add_friend_group}</a>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<div class="rhymix_button_wrapper" style="border-top:0;padding:0">
|
|
<input type="submit" value="{$lang->cmd_add_friend}" class="rhymix_button inverse" />
|
|
</div>
|
|
</form>
|
|
</div>
|