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

26 lines
1 KiB
Smarty

<h4>Userliste</h4>
<span id="curroom" style="font-weight:bold;">{$room}</span> <a id="allrooms" style="font-size:8px;">(Raumliste)</a>
<div id="users" class="mousescroll" style="padding:5px; height: 250px;">
{if $users==""}
<p>
No users.
</p>
{else}
{foreach from=$users item=user}
<a id="{$user.nick}" class="notice"><img src="/themes/funchat/images/{$user.notice}" title="Toggle notice for {$user.nick}" style="border:none;" /></a><a href="/np/{$user.nick}" target="_blank" style="color:#{$user.color}; margin-left: 8px;">{$user.nick}</a>{if $user.typing=="true"}<i class="fa fa-comment" style="color:#{$user.color}" aria-hidden="true"></i>{/if}</span>&nbsp;<img src="/themes/funchat/images/{$user.gender}.png" style="border:none;" /><br />
{/foreach}
{/if}
&nbsp;
&nbsp;
</div>
<script type="text/javascript">
$('#users').slimscroll({
color: '#00f',
size: '10px',
height: '300px'
});
{if $js!=""}
{$js}
$(".notice").rightClickMenu(menu);
{/if}
</script>