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.

19 lines
539 B

  1. {% extends "base.htm" %}
  2. {% block content %}
  3. {% if user.is_authenticated %}
  4. {% if CurrentUserIsAdmin %}
  5. <h2>Configure Mumble server</h2>
  6. <p>Here you can configure your Murmur server in detail.</p>
  7. <form action="/mumble/admin/{{Mumble.id}}" method="post">
  8. <table>
  9. {{ Adminform }}
  10. </table>
  11. <input type="submit" />
  12. </form>
  13. {% else %}
  14. <p>Only admins of this server can use this feature.</p>
  15. {% endif %}
  16. {% else %}
  17. <p>Only registered users can use this feature.</p>
  18. {% endif %}
  19. {% endblock %}