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

  1. {% load mumble_extras %}
  2. <div class="mumble">
  3. <span class="mumble">
  4. {% if Player.isAuthed %}
  5. <img src="/static/mumble/authenticated.png" alt="authed" title="Authenticated" />
  6. {% endif %}
  7. {% if Player.muted %}
  8. <img src="/static/mumble/muted_server.png" alt="muted" title="Muted by server" />
  9. {% endif %}
  10. {% if Player.deafened %}
  11. <img src="/static/mumble/deafened_server.png" alt="deafened" title="Deafened by server" />
  12. {% endif %}
  13. {% if Player.selfmuted %}
  14. <img src="/static/mumble/muted_self.png" alt="self-muted" title="Muted by themselves" />
  15. {% endif %}
  16. {% if Player.selfdeafened %}
  17. <img src="/static/mumble/deafened_self.png" alt="self-deafened" title="Deafened by themselves" />
  18. {% endif %}
  19. </span>
  20. <span>
  21. <img src="/static/mumble/knoten_v.png" />
  22. <img src="/static/mumble/talking_off.png" alt="Player" />
  23. <a id="link_{{ Player.id }}" class="mumble" href="#" title="{{ Player.name }}">{{ Player.name|trunc:30 }}</a>
  24. </span>
  25. </div>