Subversion Repositories Applications.papyrus

Compare Revisions

Ignore whitespace Rev 830 → Rev 831

/trunk/client/phorum/bibliotheque/phorum/templates/default/pm_buddies.tpl
New file
0,0 → 1,46
<form id="phorum_listform" action="{ACTION}" method="post">
{POST_VARS}
<input type="hidden" name="page" value="buddies" />
<input type="hidden" name="action" value="buddies" />
<input type="hidden" name="forum_id" value="{FORUM_ID}" />
<table border="0" cellspacing="0" class="PhorumStdTable">
<tr>
<th class="PhorumTableHeader" align="left" width="20">
{ASSIGN ITEMCOUNT BUDDYCOUNT}
{INCLUDE pm_list_selectall}
</th>
<th class="PhorumTableHeader" align="left">{LANG->Buddy}</th>
<th class="PhorumTableHeader" align="left">{LANG->RealName}</th>
<th class="PhorumTableHeader" align="center">{LANG->Mutual}</th>
{IF USERTRACK}
<th class="PhorumTableHeader" align="right">{LANG->DateActive}&nbsp;</th>
{/IF}
</tr>
{IF BUDDYCOUNT}
{LOOP BUDDIES}
<tr>
<td class="PhorumTableRow"><input type="checkbox" name="checked[]" value="{BUDDIES->user_id}"></td>
<td class="PhorumTableRow"><a href="{BUDDIES->profile_url}"><strong>{BUDDIES->username}</strong></a></td>
<td class="PhorumTableRow">{BUDDIES->real_name}</td>
<td class="PhorumTableRow"align="center">{IF BUDDIES->mutual}{LANG->Yes}{ELSE}{LANG->No}{/IF}</td>
{IF USERTRACK}
<td class="PhorumTableRow"align="right">{BUDDIES->date_last_active}&nbsp;</td>
{/IF USERTRACK}
</tr>
{/LOOP BUDDIES}
</table>
<div class="PhorumStdBlock" style="border-top:none">
<input type="submit" name="delete" class="PhorumSubmit" value="{LANG->Delete}" onclick="return confirm('<?php echo addslashes($PHORUM['DATA']['LANG']['AreYouSure'])?>')" />
<input type="submit" name="send_pm" class="PhorumSubmit" value="{LANG->SendPM}" />
</div>
{ELSE}
<tr>
<td colspan="4" style="text-align: center" class="PhorumTableRow">
<br />
<i>{LANG->BuddyListIsEmpty}</i><br />
<br />
</td>
</tr>
</table>
{/IF}
</form>