16 lines
593 B
Smarty
16 lines
593 B
Smarty
|
<h2 style="color: white;" class='roomname'>{$users} Chatlog - {$date} - {$room}</h2>
|
||
|
|
||
|
{if $logs!=""}
|
||
|
<div {$divextra}>
|
||
|
{foreach from=$logs item=log}
|
||
|
{if $log.action=="txtNarr"}
|
||
|
<span style="color: white;">({$log.date})</span> <span style="color: #FFFFFF">{if $log.img!=""}{$log.img}{/if}{$log.line}</span><br />
|
||
|
{else}
|
||
|
<span style="color: white;">({$log.date})</span> <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}
|