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.

69 lines
2.7 KiB

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Mumble Administration</title>
  5. <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
  6. <link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}/ext-2.2/resources/css/ext-all.css" />
  7. <link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}/style.css" />
  8. <link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}/templatestyle.css" />
  9. <link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}/mumble/style.css" />
  10. <link rel="shortcut icon" type="image/png" href="{{ MEDIA_URL }}/mumble/mumble.16x16.png" />
  11. <script type="text/javascript" src="{{ MEDIA_URL }}/ext-2.2/adapter/ext/ext-base.js"></script>
  12. <script type="text/javascript" src="{{ MEDIA_URL }}/ext-2.2/ext-all.js"></script>
  13. <script type="text/javascript" src="{{ MEDIA_URL }}/checkcolumn.js"></script>
  14. {% block HeadTag %}
  15. {% endblock %}
  16. </head>
  17. <body bgcolor="#3B69AD">
  18. <div id="content">
  19. <!-- header -->
  20. <div id="headpanel">
  21. <div id="headlinks">
  22. {% if user.is_authenticated %}
  23. <a href="{% url django.contrib.auth.views.logout %}">Logout</a> |
  24. {% else %}
  25. <a href="{% url django.contrib.auth.views.login %}">Login</a> |
  26. {% endif %}
  27. <a href="{% url admin:index %}" target="_blank">Admin</a> |
  28. <a href="{% url views.imprint %}">Imprint</a>
  29. </div>
  30. <h2>{% block Headline %}{% endblock %}</h2>
  31. </div>
  32. <!-- navi -->
  33. <div id="navipanel">
  34. <ul id="navilinks">
  35. <li><a href="{% url mumble.views.redir %}">Home</a></li>
  36. {% if MumbleActive %}
  37. <li><b>Mumble</b></li>
  38. {% else %}
  39. <li><a href="{% url mumble.views.mumbles %}">Mumble</a></li>
  40. {% endif %}
  41. {% if ProfileActive %}
  42. <li><b>Profile</b></li>
  43. {% else %}
  44. <li><a href="{% url views.profile %}">Profile</a></li>
  45. {% endif %}
  46. </ul>
  47. </div>
  48. <!-- content -->
  49. <div id="contentpanel">
  50. <div id="contentleft">
  51. {% block LeftColumn %}
  52. {% endblock %}
  53. </div>
  54. <div id="contentright">
  55. {% block Content %}
  56. {% endblock %}
  57. </div>
  58. </div>
  59. <!-- footer -->
  60. <div id="footerpanel">
  61. You are using <a href="http://bitbucket.org/Svedrin/mumble-django" target="_blank">Mumble-Django</a> --
  62. interface built using <a href="http://extjs.com/" target="_blank">ExtJS</a>
  63. </div>
  64. </div>
  65. </body>
  66. </html>