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.

14 lines
340 B

  1. {% extends "mobile_index.htm" %}
  2. {% load mumble_extras %}
  3. {% block Headline %}
  4. Configured Mumble Servers
  5. {% endblock %}
  6. {% block LeftColumn %}
  7. <div class="rahmen">
  8. <ul>
  9. {% for mumble in MumbleObjects %}
  10. <li><a href="{% url mumble.views.mobile_show mumble.id %}">{{mumble.name}}</a></li>
  11. {% endfor %}
  12. </ul>
  13. </div>
  14. {% endblock %}