funchat/modules/chat/templates/default/pdf_log.tpl

16 lines
593 B
Smarty
Raw Normal View History

2025-06-02 10:01:12 +02:00
<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}