funchat/modules/chat/templates/default/userlist.tpl
2025-06-27 19:44:41 +02:00

21 lines
903 B
Smarty

<h4>Userliste</h4>
<span id="curroom" style="font-weight:bold;">{$room}</span> <a id="allrooms" class="chatlink" 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">
{if $js!=""}
{$js}
$(".notice").rightClickMenu(menu);
{/if}
</script>