Initial commit
This commit is contained in:
commit
43ad32700c
7085 changed files with 447606 additions and 0 deletions
25
modules/chat/templates/default/allroomlist.tpl
Normal file
25
modules/chat/templates/default/allroomlist.tpl
Normal file
|
@ -0,0 +1,25 @@
|
|||
<h4>Raumliste</h4><a id="userlist" style="font-size:8px;">(schließen)</a><br />
|
||||
{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/austria/images/unlocked.png" style="border:none;" /><br />
|
||||
{else}
|
||||
<strong><a>{$key}</a></strong> <img src="/themes/austria/images/locked.png" style="border:none;" /><br />
|
||||
{/if}
|
||||
{foreach from=$user.u item=i}
|
||||
<a id="{$i.n}" class="notice"><img src="/themes/austria/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> <img src="/themes/archer/images/{$i.g}.png" style="border:none;" /><br />
|
||||
{/foreach}
|
||||
{/foreach}
|
||||
{/if}
|
||||
</div>
|
||||
{if $js!=""}
|
||||
<script type="text/javascript">
|
||||
{$js}
|
||||
$(".notice").rightClickMenu(menu);
|
||||
</script>
|
||||
{/if}
|
Loading…
Add table
Add a link
Reference in a new issue