mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-24 15:19:30 +00:00
15 lines
545 B
HTML
15 lines
545 B
HTML
{% comment %}
|
|
<!-- kate: space-indent on; indent-width 2; replace-tabs on; -->
|
|
{% endcomment %}
|
|
{% load mumble_extras %}
|
|
<div style="margin-left: 20px;">
|
|
<img src="{{ MEDIA_URL }}/mumble/mumble.16x16.png" alt="server" />
|
|
<a class="mumble" id="link_server" href="{{ Server|chanurl:MumbleAccount }}">{{ Server.name|trunc:30 }}</a>
|
|
</div>
|
|
{% for sub in Server.rootchan.subchans %}
|
|
{% if sub.show %}
|
|
{{ sub|chanview:MumbleAccount }}
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% for player in Server.rootchan.players %}{{ player|chanview }}{% endfor %}
|