Initial commit
This commit is contained in:
commit
43ad32700c
7085 changed files with 447606 additions and 0 deletions
27
modules/chat/templates/default/userlist.tpl
Normal file
27
modules/chat/templates/default/userlist.tpl
Normal file
|
@ -0,0 +1,27 @@
|
|||
<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/austria/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> <img src="/themes/austria/images/{$user.gender}.png" style="border:none;" /><br />
|
||||
{/foreach}
|
||||
{/if}
|
||||
|
||||
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$('#users').slimscroll({
|
||||
color: '#00f',
|
||||
size: '10px',
|
||||
width: '220px',
|
||||
height: '300px'
|
||||
});
|
||||
{if $js!=""}
|
||||
{$js}
|
||||
$(".notice").rightClickMenu(menu);
|
||||
{/if}
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue