2013-09-05 18:50:47 +00:00
|
|
|
{if $messages|count > 0}
|
|
|
|
<table class="table">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>{lang}wcf.global.objectID{/lang}</th>
|
2014-02-27 17:55:53 +00:00
|
|
|
<th>{lang}chat.global.time{/lang}</th>
|
2013-09-05 18:50:47 +00:00
|
|
|
<th colspan="2">{lang}wcf.user.username{/lang}</th>
|
|
|
|
<th>{lang}chat.acp.log.message{/lang}</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
|
|
|
|
<tbody>
|
|
|
|
{foreach from=$messages item="message"}
|
|
|
|
<tr>
|
|
|
|
<td class="columnID">{$message->messageID}</td>
|
2014-10-31 01:19:33 +00:00
|
|
|
<td style="width: 1px !important;">{$message->time|date:"chat.global.timeFormat"}</td>
|
2013-09-05 18:50:47 +00:00
|
|
|
<td class="columnIcon"><p class="framed">{@$message->getUserProfile()->getAvatar()->getImageTag(24)}</p></td>
|
|
|
|
<td class="columnTitle columnUsername right" style="width: 1px !important;">{$message->username}</td>
|
|
|
|
<td>{@$message->getFormattedMessage("text/simplified-html")}</td>
|
|
|
|
</tr>
|
|
|
|
{/foreach}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
{else}
|
|
|
|
<p class="info">{lang}wcf.global.noItems{/lang}</p>
|
|
|
|
{/if}
|