mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-06 02:01:40 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/branches/maserati@12429 201d5d3c-b55e-5fd7-737f-ddc643e51545
77 lines
3.4 KiB
HTML
77 lines
3.4 KiB
HTML
<include target="./common_header.html" />
|
|
<load target="filter/delete_friend_group.xml" />
|
|
<load target="filter/move_friend.xml" />
|
|
<h1 class="h1">{$member_title = $lang->cmd_view_friend }</h1>
|
|
<div cond="$XE_VALIDATOR_MESSAGE" class="message {$XE_VALIDATOR_MESSAGE_TYPE}">
|
|
<p>{$XE_VALIDATOR_MESSAGE}</p>
|
|
</div>
|
|
<form ruleset="deleteCheckedFriend" id="fo_friend_list" action="./" method="post">
|
|
<input type="hidden" name="module" value="communication" />
|
|
<input type="hidden" name="act" value="procCommunicationDeleteFriend" />
|
|
|
|
<div class="btnArea">
|
|
<span class="etc">
|
|
<select name="jumpMenu" id="jumpMenu">
|
|
<option value="">{$lang->default_friend_group}</option>
|
|
<!--@foreach($friend_group_list as $key => $val)-->
|
|
<option value="{$val->friend_group_srl}" <!--@if($val->friend_group_srl == $friend_group_srl)-->selected="selected"<!--@end--> >{$val->title}</option>
|
|
<!--@end-->
|
|
</select>
|
|
<button type="button" onclick="doJumpFriendGroup()">{$lang->cmd_move}</button>
|
|
</span>
|
|
<select name="friend_group_list" id="friend_group_list">
|
|
<!--@foreach($friend_group_list as $key => $val)-->
|
|
<option value="{$val->friend_group_srl}" <!--@if($val->friend_group_srl == $friend_group_srl)-->selected="selected"<!--@end--> >{$val->title}</option>
|
|
<!--@end-->
|
|
</select>
|
|
<button type="button" onclick="doRenameFriendGroup();return false;">{$lang->cmd_modify}</button>
|
|
<button type="button" onclick="doDeleteFriendGroup();return false;">{$lang->cmd_delete}</button>
|
|
<a href="{getUrl('','module','communication','act','dispCommunicationAddFriendGroup')}" onclick="popopen(this.href);return false;">{$lang->cmd_add_friend_group}</a>
|
|
</div>
|
|
|
|
<div class="table even">
|
|
<table class="x_table x_table-striped x_table-hover">
|
|
<caption>Total: {$total_count}</caption>
|
|
<thead>
|
|
<tr>
|
|
<th>{$lang->friend_group}</th>
|
|
<th>{$lang->nick_name}</th>
|
|
<th>{$lang->regdate}</th>
|
|
<th><input name="check_all" type="checkbox" /></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr loop="$friend_list => $no,$val">
|
|
<td>{$val->group_title?$val->group_title:" "}</td>
|
|
<td><a href="#popup_menu_area" class="member_{$val->target_srl}">{$val->nick_name}</a></td>
|
|
<td>{zdate($val->regdate,"Y-m-d")}</td>
|
|
<td><input type="checkbox" name="friend_srl_list[]" value="{$val->friend_srl}" /></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<div class="btnArea">
|
|
<select name="target_friend_group_srl">
|
|
<!--@foreach($friend_group_list as $key => $val)-->
|
|
<option value="{$val->friend_group_srl}">{$val->title}</option>
|
|
<!--@end-->
|
|
</select>
|
|
<button type="submit" name="act" value="procCommunicationMoveFriend">{$lang->cmd_move}</button>
|
|
<button type="submit" name="act" value="procCommunicationDeleteFriend">{$lang->cmd_delete}</button>
|
|
</div>
|
|
<div class="pagination">
|
|
<a href="{getUrl('page','','document_srl','')}" class="direction">‹ {$lang->first_page}</a>
|
|
<!--@while($page_no = $page_navigation->getNextPage())-->
|
|
<!--@if($page == $page_no)-->
|
|
<strong>{$page_no}</strong>
|
|
<!--@else-->
|
|
<a href="{getUrl('page',$page_no,'document_srl','')}">{$page_no}</a>
|
|
<!--@end-->
|
|
<!--@end-->
|
|
<a href="{getUrl('page',$page_navigation->last_page,'document_srl','')}" class="direction">{$lang->last_page} ›</a>
|
|
</div>
|
|
</form>
|
|
<form action="./" method="get" id="for_delete_group">
|
|
<input type="hidden" name="friend_group_srl" value="" />
|
|
</form>
|
|
<include target="./common_footer.html" />
|