mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-06 18:21:39 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@10302 201d5d3c-b55e-5fd7-737f-ddc643e51545
37 lines
1.3 KiB
HTML
37 lines
1.3 KiB
HTML
<!--%import("filter/add_friend.xml")-->
|
|
<!--%import("js/communication.js")-->
|
|
|
|
<div id="popHeader" class="wide">
|
|
<h3 class="xeAdmin">{$lang->cmd_add_friend}</h3>
|
|
</div>
|
|
|
|
<form action="./" method="get" onsubmit="return procFilter(this, add_friend)">
|
|
<input type="hidden" name="target_srl" value="{$target_info->member_srl}" />
|
|
|
|
<div id="popBody">
|
|
|
|
<table cellspacing="0" class="rowTable">
|
|
<tr>
|
|
<th><div>{$lang->nick_name}</div></th>
|
|
<td><div class="member_{$target_info->member_srl}">{$target_info->nick_name}</div></td>
|
|
</tr>
|
|
<tr>
|
|
<th><div>{$lang->friend_group}</div></th>
|
|
<td colspan="2">
|
|
<select name="friend_group_srl" class="fl">
|
|
<option value="">{$lang->default_friend_group}</option>
|
|
<!--@foreach($friend_group_list as $key => $val)-->
|
|
<option value="{$val->friend_group_srl}">{$val->title}</option>
|
|
<!--@end-->
|
|
</select>
|
|
<a href="{getUrl('act','dispCommunicationAddFriendGroup')}" onclick="popopen(this.href);return false;">{$lang->cmd_add_friend_group}</a></span>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
|
|
<div id="popFooter">
|
|
<span class="btn"><input type="submit" value="{$lang->cmd_add_friend}" /></span>
|
|
</div>
|
|
|
|
</form>
|