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.

94 lines
3.5 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" xml:lang="en" lang="en">
  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="/static/ext-2.2/resources/css/ext-all.css" />
  7. <link href="/static/css/my_layout.css" rel="stylesheet" type="text/css" />
  8. <link href="/static/mumble/style.css" rel="stylesheet" type="text/css" />
  9. <script type="text/javascript" src="/static/ext-2.2/adapter/ext/ext-base.js"></script>
  10. <script type="text/javascript" src="/static/ext-2.2/ext-all.js"></script>
  11. <!--[if lte IE 7]>
  12. <link href="/static/css/patches/patch_my_layout.css" rel="stylesheet" type="text/css" />
  13. <![endif]-->
  14. {% block HeadTag %}
  15. {% endblock %}
  16. </head>
  17. <body>
  18. <div class="page_margins">
  19. <div id="border-top">
  20. <div id="edge-tl"></div>
  21. <div id="edge-tr"></div>
  22. </div>
  23. <div class="page">
  24. <div id="header">
  25. <div id="topnav">
  26. <!-- start: skip link navigation -->
  27. <a class="skip" title="skip link" href="#navigation">Skip to the navigation</a><span class="hideme">.</span>
  28. <a class="skip" title="skip link" href="#content">Skip to the content</a><span class="hideme">.</span>
  29. <!-- end: skip link navigation -->
  30. {% if user.is_authenticated %}
  31. <a href="/accounts/logout">Logout</a> |
  32. {% else %}
  33. <a href="/accounts/login">Login</a> |
  34. {% endif %}
  35. <a href="/admin" target="_blank">Admin</a> |
  36. <a href="/accounts/imprint">Imprint</a>
  37. </div>
  38. <h2>{% block Headline %}{% endblock %}</h2>
  39. </div>
  40. <div id="nav">
  41. <!-- skiplink anchor: navigation -->
  42. <a id="navigation" name="navigation"></a>
  43. <div class="hlist">
  44. <!-- main navigation: horizontal list -->
  45. <ul>
  46. <li><a href="/">Home</a></li>
  47. {% if MumbleActive %}
  48. <li class="active"><strong>Mumble</strong></li>
  49. {% else %}
  50. <li><a href="/mumble">Mumble</a></li>
  51. {% endif %}
  52. {% if ProfileActive %}
  53. <li class="active"><strong>Profile</strong></li>
  54. {% else %}
  55. <li><a href="/accounts/profile">Profile</a></li>
  56. {% endif %}
  57. </ul>
  58. </div>
  59. </div>
  60. <div id="main">
  61. <div id="col1">
  62. <div id="col1_content" class="clearfix">
  63. <!-- add your content here -->
  64. {% block LeftColumn %}
  65. {% endblock %}
  66. </div>
  67. </div>
  68. <div id="col3">
  69. <div id="col3_content" class="clearfix">
  70. <!-- add your content here -->
  71. {% block Content %}
  72. {% endblock %}
  73. </div>
  74. <!-- IE Column Clearing -->
  75. <div id="ie_clearing"> &#160; </div>
  76. </div>
  77. </div>
  78. <!-- begin: #footer -->
  79. <div id="footer">
  80. You are using <a href="http://bitbucket.org/Svedrin/mumble-django" target="_blank">Mumble-Django</a> --
  81. layout based on <a href="http://www.yaml.de/" target="_blank">YAML</a> --
  82. interface built using <a href="http://extjs.com/" target="_blank">ExtJS</a>
  83. </div>
  84. </div>
  85. <div id="border-bottom">
  86. <div id="edge-bl"></div>
  87. <div id="edge-br"></div>
  88. </div>
  89. </div>
  90. </body>
  91. </html>