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

  1. {% extends "index.html" %}
  2. {% load mumble_extras %}
  3. {% load i18n %}
  4. {% block Headline %}{% trans "Imprint" %}{% endblock %}
  5. {% block Content %}
  6. <div class="rahmen">
  7. <p>
  8. 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 />
  9. <br />
  10. 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 />
  11. <br />
  12. It is being developed by Michael "Svedrin" Ziegler. See the attached AUTHORS and COPYRIGHT files for details.<br />
  13. <br />
  14. </p>
  15. <p>
  16. <table>
  17. <caption>Version information</caption>
  18. <tr><th>Running version</th><td>{{ CURRENTVERSION }}</td></tr>
  19. <tr><th>Newest available version</th><td>{{ upstreamversion }}</td></tr>
  20. </table><br />
  21. </p>
  22. <p>
  23. All JavaScript elements were implemented using <a href="http://www.extjs.com/" target="_blank">the ExtJS JavaScript library.</a>
  24. </p>
  25. </div>
  26. {% endblock %}