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.

15 lines
571 B

  1. {% comment %}
  2. <!-- kate: space-indent on; indent-width 2; replace-tabs on; -->
  3. {% endcomment %}
  4. {% load mumble_extras %}
  5. {% load staticfiles %}
  6. <div style="margin-left: 20px;">
  7. <img src="{% static 'mumble/img/mumble.16x16.png' %}" alt="server" />
  8. <a class="mumble" id="link_server" href="{{ Server|chanurl:MumbleAccount }}">{{ Server.name|trunc:30 }}</a>
  9. </div>
  10. {% for sub in Server.rootchan.subchans %}
  11. {% if sub.show %}
  12. {{ sub|chanview:MumbleAccount }}
  13. {% endif %}
  14. {% endfor %}
  15. {% for player in Server.rootchan.players %}{{ player|chanview }}{% endfor %}