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

28 lines
1,021 B
Smarty
Raw Normal View History

2025-06-27 19:44:41 +02:00
<h4>Raumliste</h4><a id="userlist" class="chatlink" style="font-size:8px;">(schlie&szlig;en)</a>
2025-06-17 21:55:44 +02:00
<div id="users" class="mousescroll" style="padding:5px; height: 250px;">
2025-06-02 10:01:12 +02:00
{if $users==""}
<p>
No users.
</p>
{else}
<div style="padding:5px;">
{foreach from=$users key=key item=user}
{if $user.s == false}
2025-06-17 21:55:44 +02:00
<strong><a id="{$key}" class="room">{$key}</a></strong> <img src="/themes/funchat/images/unlocked.png" style="border:none;" /><br />
2025-06-02 10:01:12 +02:00
{else}
2025-06-17 21:55:44 +02:00
<strong><a>{$key}</a></strong> <img src="/themes/funchat/images/locked.png" style="border:none;" /><br />
2025-06-02 10:01:12 +02:00
{/if}
{foreach from=$user.u item=i}
2025-06-17 21:55:44 +02:00
<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 />
2025-06-02 10:01:12 +02:00
{/foreach}
{/foreach}
{/if}
</div>
2025-06-17 21:55:44 +02:00
</div>
2025-06-02 10:01:12 +02:00
{if $js!=""}
<script type="text/javascript">
{$js}
$(".notice").rightClickMenu(menu);
</script>
2025-06-17 21:55:44 +02:00
{/if}