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.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. <script type="text/javascript" src="/static/checkcolumn.js"></script>
  13. {% block HeadTag %}
  14. {% endblock %}
  15. </head>
  16. <body bgcolor="#3B69AD">
  17. <div id="content">
  18. <!-- header -->
  19. <div id="headpanel">
  20. <div id="headlinks">
  21. {% if user.is_authenticated %}
  22. <a href="/accounts/logout">Logout</a> |
  23. {% else %}
  24. <a href="/accounts/login">Login</a> |
  25. {% endif %}
  26. <a href="/admin" target="_blank">Admin</a> |
  27. <a href="/accounts/imprint">Imprint</a>
  28. </div>
  29. <h2>{% block Headline %}{% endblock %}</h2>
  30. </div>
  31. <!-- navi -->
  32. <div id="navipanel">
  33. <ul id="navilinks">
  34. <li><a href="/">Home</a></li>
  35. {% if MumbleActive %}
  36. <li><b>Mumble</b></li>
  37. {% else %}
  38. <li><a href="/mumble">Mumble</a></li>
  39. {% endif %}
  40. {% if ProfileActive %}
  41. <li><b>Profile</b></li>
  42. {% else %}
  43. <li><a href="/accounts/profile">Profile</a></li>
  44. {% endif %}
  45. </ul>
  46. </div>
  47. <!-- content -->
  48. <div id="contentpanel">
  49. <div id="contentleft">
  50. {% block LeftColumn %}
  51. {% endblock %}
  52. </div>
  53. <div id="contentright">
  54. {% block Content %}
  55. {% endblock %}
  56. </div>
  57. </div>
  58. <!-- footer -->
  59. <div id="footerpanel">
  60. You are using <a href="http://bitbucket.org/Svedrin/mumble-django" target="_blank">Mumble-Django</a> --
  61. interface built using <a href="http://extjs.com/" target="_blank">ExtJS</a>
  62. </div>
  63. </div>
  64. </body>
  65. </html>