831 |
florian |
1 |
<form id="phorum_listform" action="{ACTION}" method="post">
|
|
|
2 |
{POST_VARS}
|
|
|
3 |
<input type="hidden" name="page" value="buddies" />
|
|
|
4 |
<input type="hidden" name="action" value="buddies" />
|
|
|
5 |
<input type="hidden" name="forum_id" value="{FORUM_ID}" />
|
|
|
6 |
<table border="0" cellspacing="0" class="PhorumStdTable">
|
|
|
7 |
<tr>
|
|
|
8 |
<th class="PhorumTableHeader" align="left" width="20">
|
|
|
9 |
{ASSIGN ITEMCOUNT BUDDYCOUNT}
|
|
|
10 |
{INCLUDE pm_list_selectall}
|
|
|
11 |
</th>
|
|
|
12 |
<th class="PhorumTableHeader" align="left">{LANG->Buddy}</th>
|
|
|
13 |
<th class="PhorumTableHeader" align="left">{LANG->RealName}</th>
|
|
|
14 |
<th class="PhorumTableHeader" align="center">{LANG->Mutual}</th>
|
|
|
15 |
{IF USERTRACK}
|
|
|
16 |
<th class="PhorumTableHeader" align="right">{LANG->DateActive} </th>
|
|
|
17 |
{/IF}
|
|
|
18 |
</tr>
|
|
|
19 |
{IF BUDDYCOUNT}
|
|
|
20 |
{LOOP BUDDIES}
|
|
|
21 |
<tr>
|
|
|
22 |
<td class="PhorumTableRow"><input type="checkbox" name="checked[]" value="{BUDDIES->user_id}"></td>
|
|
|
23 |
<td class="PhorumTableRow"><a href="{BUDDIES->profile_url}"><strong>{BUDDIES->username}</strong></a></td>
|
|
|
24 |
<td class="PhorumTableRow">{BUDDIES->real_name}</td>
|
|
|
25 |
<td class="PhorumTableRow"align="center">{IF BUDDIES->mutual}{LANG->Yes}{ELSE}{LANG->No}{/IF}</td>
|
|
|
26 |
{IF USERTRACK}
|
|
|
27 |
<td class="PhorumTableRow"align="right">{BUDDIES->date_last_active} </td>
|
|
|
28 |
{/IF USERTRACK}
|
|
|
29 |
</tr>
|
|
|
30 |
{/LOOP BUDDIES}
|
|
|
31 |
</table>
|
|
|
32 |
<div class="PhorumStdBlock" style="border-top:none">
|
|
|
33 |
<input type="submit" name="delete" class="PhorumSubmit" value="{LANG->Delete}" onclick="return confirm('<?php echo addslashes($PHORUM['DATA']['LANG']['AreYouSure'])?>')" />
|
|
|
34 |
<input type="submit" name="send_pm" class="PhorumSubmit" value="{LANG->SendPM}" />
|
|
|
35 |
</div>
|
|
|
36 |
{ELSE}
|
|
|
37 |
<tr>
|
|
|
38 |
<td colspan="4" style="text-align: center" class="PhorumTableRow">
|
|
|
39 |
<br />
|
|
|
40 |
<i>{LANG->BuddyListIsEmpty}</i><br />
|
|
|
41 |
<br />
|
|
|
42 |
</td>
|
|
|
43 |
</tr>
|
|
|
44 |
</table>
|
|
|
45 |
{/IF}
|
|
|
46 |
</form>
|