Initial commit
This commit is contained in:
commit
43ad32700c
7085 changed files with 447606 additions and 0 deletions
31
modules/chat/templates/default/chatlogs.tpl
Normal file
31
modules/chat/templates/default/chatlogs.tpl
Normal file
|
@ -0,0 +1,31 @@
|
|||
<div id="posts-list" class="page-content-half">
|
||||
<div class="entry-content cf">
|
||||
<h2>Chatlogs</h2>
|
||||
<form class="logform" name="form" action="#" method="post">
|
||||
Room: <select name="room">
|
||||
{$rooms}
|
||||
</select>
|
||||
Date: <input name="date" class="inputdate" id="inputdate" value="{$date}" size="10" /><br /><br />
|
||||
Nicks: <input name="nicks" id="chars" value="{$nicks}" size="30" /><br />
|
||||
<input class="button" align="right" type="submit" value="Go!" />
|
||||
</form>
|
||||
{if $logs!=""}
|
||||
{if $extrareason!=""}
|
||||
<span style="font-size:15px; color:red;">The logs here are highlighted because of following event: {$extrareason}</span>
|
||||
{/if}
|
||||
<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>
|
||||
{/if}
|
||||
</div>
|
||||
<div class="c-1"></div>
|
||||
<div class="c-2"></div>
|
||||
<div class="c-3"></div>
|
||||
<div class="c-4"></div>
|
||||
</div>
|
Loading…
Add table
Add a link
Reference in a new issue