Forked mumble-django project from https://bitbucket.org/Svedrin/mumble-django
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
438 B
11 lines
438 B
{% load mumble_extras %}
|
|
<div style="margin-left: 20px">
|
|
<img src="/static/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 %}
|