funchat/modules/chat/templates/default/log.tpl
2025-06-02 10:01:12 +02:00

15 lines
501 B
Smarty

<h2 class='roomname'>{$users} Chatlog - {$date} - {$room}</h2>
{if $logs!=""}
<div {$divextra}>
{foreach from=$logs item=log}
{if $log.action=="txtNarr"}
({$log.date}) <span style="color: #FFFFFF">{if $log.img!=""}{$log.img}{/if}{$log.line}</span><br />
{else}
({$log.date}) <span style="color: #{$log.color}">{if $log.img!=""}{$log.img}{/if}{$log.line}</span><br />
{/if}
{/foreach}
</div>
{else}
Sorry, this log does not exist or you have not been granted the rights to view it.
{/if}