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

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