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.
 
 
 
 
 
 

47 lines
1.1 KiB

{% extends "index.htm" %}
{% block headtags %}
<meta http-equiv="refresh" content="30" />
{% endblock %}
{% block Headline %}
{{ ServerObject.rootName }}
{% endblock %}
{% block LeftColumn %}
{% include "mumble/content.htm" %}
{% endblock %}
{% block Content %}
{% if user.is_authenticated %}
<div id="mumble_registration">
<h2>Server registration</h2>
<form action="" method="post">
{% if Registered %}
You are registered on this server.<br />
{% else %}
You do not have an account on this server.<br />
{% endif %}
<table>
{{ RegForm }}
</table>
<input type="hidden" name="mode" value="reg" />
<input type="submit" />
</form>
</div>
{% else %}
not admin...
{% endif %}
{% if CurrentUserIsAdmin %}
<div id="mumble_admin">
<h2>Server administration</h2>
<form action="" method="post">
<table>
{{ AdminForm }}
</table>
<input type="hidden" name="mode" value="admin" />
<input type="submit" />
</form>
</div>
{% else %}
not admin...
{% endif %}
{% endblock %}