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.

11 lines
438 B

  1. {% load mumble_extras %}
  2. <div style="margin-left: 20px">
  3. <img src="/static/mumble/mumble.16x16.png" alt="server" />
  4. <a class="mumble" id="link_server" href="{{ Server|chanurl:MumbleAccount }}">{{ Server.name|trunc:30 }}</a>
  5. </div>
  6. {% for sub in Server.rootchan.subchans %}
  7. {% if sub.show %}
  8. {{ sub|chanview:MumbleAccount }}
  9. {% endif %}
  10. {% endfor %}
  11. {% for player in Server.rootchan.players %}{{ player|chanview }}{% endfor %}