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

27 lines
1,021 B
Smarty

<h4>Raumliste</h4><a id="userlist" class="chatlink" style="font-size:8px;">(schlie&szlig;en)</a>
<div id="users" class="mousescroll" style="padding:5px; height: 250px;">
{if $users==""}
<p>
No users.
</p>
{else}
<div style="padding:5px;">
{foreach from=$users key=key item=user}
{if $user.s == false}
<strong><a id="{$key}" class="room">{$key}</a></strong> <img src="/themes/funchat/images/unlocked.png" style="border:none;" /><br />
{else}
<strong><a>{$key}</a></strong> <img src="/themes/funchat/images/locked.png" style="border:none;" /><br />
{/if}
{foreach from=$user.u item=i}
<a id="{$i.n}" class="notice"><img src="/themes/funchat/images/{$i.i}" style="border:none;" /></a>{$i.l}<a href="/np/{$i.n}" target="_blank" style="color:#{$i.c}; margin-left: 8px;">{$i.n}</a></span>&nbsp;<img src="/themes/funchat/images/{$i.g}.png" style="border:none;" /><br />
{/foreach}
{/foreach}
{/if}
</div>
</div>
{if $js!=""}
<script type="text/javascript">
{$js}
$(".notice").rightClickMenu(menu);
</script>
{/if}