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.

28 lines
1.3 KiB

  1. {% load mumble_extras %}
  2. <div class="mumble" style="background-image: url( {{ MEDIA_URL }}/mumble/linie_v.png )">
  3. <span class="mumble">
  4. {% if Player.isAuthed %}
  5. <img src="{{ MEDIA_URL }}/mumble/authenticated.png" alt="authed" title="Authenticated" />
  6. {% endif %}
  7. {% if Player.mute or Player.suppress %}
  8. <img src="{{ MEDIA_URL }}/mumble/muted_server.png" alt="muted" title="Muted by server" />
  9. {% endif %}
  10. {% if Player.deaf %}
  11. <img src="{{ MEDIA_URL }}/mumble/deafened_server.png" alt="deafened" title="Deafened by server" />
  12. {% endif %}
  13. {% if Player.selfMute %}
  14. <img src="{{ MEDIA_URL }}/mumble/muted_self.png" alt="self-muted" title="Muted by themselves" />
  15. {% endif %}
  16. {% if Player.selfDeaf %}
  17. <img src="{{ MEDIA_URL }}/mumble/deafened_self.png" alt="self-deafened" title="Deafened by themselves" />
  18. {% endif %}
  19. {% if Player.hasComment %}
  20. <img src="{{ MEDIA_URL }}/mumble/comment.png" alt="has comment" title="has a User Comment set" />
  21. {% endif %}
  22. </span>
  23. <span>
  24. <img src="{{ MEDIA_URL }}/mumble/knoten_v.png" />
  25. <img src="{{ MEDIA_URL }}/mumble/talking_off.png" alt="Player" />
  26. <a id="link_{{ Player.id }}" class="mumble" href="#" title="{{ Player.name }}">{{ Player.name|trunc:30 }}</a>
  27. </span>
  28. </div>