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.
28 lines
1.2 KiB
28 lines
1.2 KiB
{% extends "index.html" %}
|
|
{% load mumble_extras %}
|
|
{% load i18n %}
|
|
|
|
{% block Headline %}{% trans "Imprint" %}{% endblock %}
|
|
|
|
{% block Content %}
|
|
<div class="rahmen">
|
|
<p>
|
|
This is <a href="http://bitbucket.org/Svedrin/mumble-django/">Mumble-Django</a>, a Murmur config application for <a href="http://www.djangoproject.com/" target="_blank">Django</a> that configures a Mumble server. It is able to create and remove server instances, start/stop them, and configure them.<br />
|
|
<br />
|
|
Furthermore, registered Django users can sign up for user accounts on the configured vservers and change their registration names and passwords, and Django admins can manage server admins through the webinterface.<br />
|
|
<br />
|
|
It is being developed by Michael "Svedrin" Ziegler. See the attached AUTHORS and COPYRIGHT files for details.<br />
|
|
<br />
|
|
</p>
|
|
<p>
|
|
<table>
|
|
<caption>Version information</caption>
|
|
<tr><th>Running version</th><td>{{ CURRENTVERSION }}</td></tr>
|
|
<tr><th>Newest available version</th><td>{{ upstreamversion }}</td></tr>
|
|
</table><br />
|
|
</p>
|
|
<p>
|
|
All JavaScript elements were implemented using <a href="http://www.extjs.com/" target="_blank">the ExtJS JavaScript library.</a>
|
|
</p>
|
|
</div>
|
|
{% endblock %}
|