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.
25 lines
1.0 KiB
25 lines
1.0 KiB
{% load mumble_extras %}
|
|
<div class="mumble">
|
|
<span class="mumble">
|
|
{% if Player.isAuthed %}
|
|
<img src="/static/mumble/authenticated.png" alt="authed" title="Authenticated" />
|
|
{% endif %}
|
|
{% if Player.muted or Player.suppressed %}
|
|
<img src="/static/mumble/muted_server.png" alt="muted" title="Muted by server" />
|
|
{% endif %}
|
|
{% if Player.deafened %}
|
|
<img src="/static/mumble/deafened_server.png" alt="deafened" title="Deafened by server" />
|
|
{% endif %}
|
|
{% if Player.selfmuted %}
|
|
<img src="/static/mumble/muted_self.png" alt="self-muted" title="Muted by themselves" />
|
|
{% endif %}
|
|
{% if Player.selfdeafened %}
|
|
<img src="/static/mumble/deafened_self.png" alt="self-deafened" title="Deafened by themselves" />
|
|
{% endif %}
|
|
</span>
|
|
<span>
|
|
<img src="/static/mumble/knoten_v.png" />
|
|
<img src="/static/mumble/talking_off.png" alt="Player" />
|
|
<a id="link_{{ Player.id }}" class="mumble" href="#" title="{{ Player.name }}">{{ Player.name|trunc:30 }}</a>
|
|
</span>
|
|
</div>
|