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.

68 lines
2.3 KiB

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