mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-24 07:09:31 +00:00
22 lines
544 B
HTML
22 lines
544 B
HTML
{% extends "mobile_index.html" %}
|
|
{% comment %}
|
|
<!-- kate: space-indent on; indent-width 2; replace-tabs on; -->
|
|
{% endcomment %}
|
|
{% load mumble_extras %}
|
|
{% block Headline %}
|
|
Configured Mumble Servers
|
|
{% endblock %}
|
|
{% block LeftColumn %}
|
|
<div class="rahmen">
|
|
<ul>
|
|
{% for mumble in MumbleObjects %}
|
|
{% if mumble.booted %}
|
|
<li><a href="{% url mumble.views.mobile_show mumble.id %}">{{ mumble.name }}</a></li>
|
|
{% else %}
|
|
<li>{{ mumble.name }} (offline)</li>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
{% endblock %}
|