|
@ -3,36 +3,36 @@ |
|
|
{% endcomment %} |
|
|
{% endcomment %} |
|
|
{% load mumble_extras %} |
|
|
{% load mumble_extras %} |
|
|
{% load i18n %} |
|
|
{% load i18n %} |
|
|
<div class="mumble" style="background-image: url( {{ MEDIA_URL }}/mumble/linie_v.png )"> |
|
|
|
|
|
|
|
|
<div class="mumble" style="background-image: url( {{MUMBLE_MEDIA_PREFIX}}/img/linie_v.png )"> |
|
|
<span class="mumble"> |
|
|
<span class="mumble"> |
|
|
{% if Player.isAuthed %} |
|
|
{% if Player.isAuthed %} |
|
|
<img src="{{ MEDIA_URL }}/mumble/authenticated.png" alt="authed" title="{% trans "Authenticated" %}" /> |
|
|
|
|
|
|
|
|
<img src="{{MUMBLE_MEDIA_PREFIX}}/img/authenticated.png" alt="authed" title="{% trans "Authenticated" %}" /> |
|
|
{% endif %} |
|
|
{% endif %} |
|
|
{% if Player.mute %} |
|
|
{% if Player.mute %} |
|
|
<img src="{{ MEDIA_URL }}/mumble/muted_server.png" alt="muted" title="{% trans "Muted" %}" /> |
|
|
|
|
|
|
|
|
<img src="{{MUMBLE_MEDIA_PREFIX}}/img/muted_server.png" alt="muted" title="{% trans "Muted" %}" /> |
|
|
{% endif %} |
|
|
{% endif %} |
|
|
{% if Player.suppress %} |
|
|
{% if Player.suppress %} |
|
|
<img src="{{ MEDIA_URL }}/mumble/muted_suppressed.png" alt="muted" title="{% trans "Suppressed" %}" /> |
|
|
|
|
|
|
|
|
<img src="{{MUMBLE_MEDIA_PREFIX}}/img/muted_suppressed.png" alt="muted" title="{% trans "Suppressed" %}" /> |
|
|
{% endif %} |
|
|
{% endif %} |
|
|
{% if Player.deaf %} |
|
|
{% if Player.deaf %} |
|
|
<img src="{{ MEDIA_URL }}/mumble/deafened_server.png" alt="deafened" title="{% trans "Deafened" %}" /> |
|
|
|
|
|
|
|
|
<img src="{{MUMBLE_MEDIA_PREFIX}}/img/deafened_server.png" alt="deafened" title="{% trans "Deafened" %}" /> |
|
|
{% endif %} |
|
|
{% endif %} |
|
|
{% if Player.selfMute %} |
|
|
{% if Player.selfMute %} |
|
|
<img src="{{ MEDIA_URL }}/mumble/muted_self.png" alt="self-muted" title="{% trans "Muted by self" %}" /> |
|
|
|
|
|
|
|
|
<img src="{{MUMBLE_MEDIA_PREFIX}}/img/muted_self.png" alt="self-muted" title="{% trans "Muted by self" %}" /> |
|
|
{% endif %} |
|
|
{% endif %} |
|
|
{% if Player.selfDeaf %} |
|
|
{% if Player.selfDeaf %} |
|
|
<img src="{{ MEDIA_URL }}/mumble/deafened_self.png" alt="self-deafened" title="{% trans "Deafened by self" %}" /> |
|
|
|
|
|
|
|
|
<img src="{{MUMBLE_MEDIA_PREFIX}}/img/deafened_self.png" alt="self-deafened" title="{% trans "Deafened by self" %}" /> |
|
|
{% endif %} |
|
|
{% endif %} |
|
|
{% if Player.hasComment %} |
|
|
{% if Player.hasComment %} |
|
|
<img src="{{ MEDIA_URL }}/mumble/comment.png" alt="has comment" title="{% trans "has a User Comment set" %}" /> |
|
|
|
|
|
|
|
|
<img src="{{MUMBLE_MEDIA_PREFIX}}/img/comment.png" alt="has comment" title="{% trans "has a User Comment set" %}" /> |
|
|
{% endif %} |
|
|
{% endif %} |
|
|
</span> |
|
|
</span> |
|
|
<span> |
|
|
<span> |
|
|
<img src="{{ MEDIA_URL }}/mumble/knoten_v.png" alt="" /> |
|
|
|
|
|
|
|
|
<img src="{{MUMBLE_MEDIA_PREFIX}}/img/knoten_v.png" alt="" /> |
|
|
{% if Player.isTalking %} |
|
|
{% if Player.isTalking %} |
|
|
<img src="{{ MEDIA_URL }}/mumble/talking_on.png" alt="Player" /> |
|
|
|
|
|
|
|
|
<img src="{{MUMBLE_MEDIA_PREFIX}}/img/talking_on.png" alt="Player" /> |
|
|
{% else %} |
|
|
{% else %} |
|
|
<img src="{{ MEDIA_URL }}/mumble/talking_off.png" alt="Player" /> |
|
|
|
|
|
|
|
|
<img src="{{MUMBLE_MEDIA_PREFIX}}/img/talking_off.png" alt="Player" /> |
|
|
{% endif %} |
|
|
{% endif %} |
|
|
<a id="link_{{ Player.id }}" class="mumble" href="#" title="{{ Player.name }}">{{ Player.name|trunc:30 }}</a> |
|
|
<a id="link_{{ Player.id }}" class="mumble" href="#" title="{{ Player.name }}">{{ Player.name|trunc:30 }}</a> |
|
|
</span> |
|
|
</span> |
|
|