funchat/modules/chat/templates/default/privatechatlogs.tpl.part

36 lines
1.3 KiB
Text
Raw Normal View History

<div id="maincol_top_invisible">
</div>
<div class="maincol_review_header">
<h2><span>Private Chatlogs</span></h2><br />
</div>
<div class="maincol_box_empty">
<div class="content_page">
{if $convos==""}
No private logs yet.
{else}
<table width="600px">
<tr>
<th>ID</th>
<th>Date - Room</th>
<th>Owner / Shared by</th>
<th>Actions</th>
</tr>
{foreach from=$convos item=con}
<tr>
<td width="10%">{$con.id}</td>
<td><a href="http://logs.ponytopia.net/id/{$con.id}" target="_blank">{$con.date} - {$con.room}</a></td>
<td><a href="http://forum.ponytopia.net/user-{$con.owner}.html" target="_blank">{$con.sname}</a></td>
<td width="16%"><a href="http://logs.ponytopia.net/pdf/{$con.id}"><img src="/themes/ponytopia/images/icons/pdf.png" style="border:none;"/></a>
<a onclick="return confirmLink(this, 'Are you sure to delete the Log? It will be gone for good.')" href="/index.php?task=chat&sub=deletelog&id={$con.id}"><img src="/themes/ponytopia/images/icons/delete.png" style="border:none;" /></a>{if $con.owner==$con.uid}<a href="/index.php?task=chat&amp;sub=editlog&amp;id={$con.id}"><img src="/themes/ponytopia/images/icons/wrench.png" style="border:none;"/></a>
{/if}
</td>
</tr>
{/foreach}
</table>
{/if}
</div>
{if $pagination!=""}
<div align="center">{$pagination}</div>
{/if}
</div>