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.
19 lines
731 B
19 lines
731 B
{% load mumble_extras %}
|
|
<div class="mumble" style="background-image: url( {{ MEDIA_URL }}/mumble/linie_v.png )">
|
|
<img src="{{ MEDIA_URL }}/mumble/knoten_v.png" />
|
|
{% if Channel.linked %}
|
|
<img src="{{ MEDIA_URL }}/mumble/channel_linked.png" alt="linked channel" />
|
|
{% else %}
|
|
<img src="{{ MEDIA_URL }}/mumble/channel.png" alt="channel" />
|
|
{% endif %}
|
|
<a href="{{ Channel|chanurl:MumbleAccount }}" class="mumble" id="link_{{ Channel.id }}" title="{{ Channel.name }}">
|
|
{{ Channel.name|trunc:30 }}
|
|
</a>
|
|
{% for sub in Channel.subchans %}
|
|
{% if sub.show %}
|
|
{{ sub|chanview:MumbleAccount }}
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% for player in Channel.players %}{{ player|chanview }}{% endfor %}
|
|
</div>
|
|
|