Michael Ziegler
16 years ago
8 changed files with 136 additions and 83 deletions
-
14htdocs/mumble/style.css
-
11pyweb/mumble/MumbleCtlDbus.py
-
7pyweb/mumble/MumbleCtlIce.py
-
3pyweb/mumble/mctl.py
-
10pyweb/mumble/mmobjects.py
-
2pyweb/mumble/models.py
-
136template/index.htm
-
36template/mumble/mumble.htm
@ -1,68 +1,68 @@ |
|||
<html> |
|||
<head> |
|||
<title>Mumble Administration</title> |
|||
<meta http-equiv="Content-type" content="text/html; charset=utf-8" /> |
|||
|
|||
<link rel="stylesheet" type="text/css" href="/static/ext-2.2/resources/css/ext-all.css" /> |
|||
<link rel="stylesheet" type="text/css" href="/static/style.css" /> |
|||
<link rel="stylesheet" type="text/css" href="/static/templatestyle.css" /> |
|||
<link rel="stylesheet" type="text/css" href="/static/mumble/style.css" /> |
|||
<link rel="shortcut icon" type="image/png" href="/static/mumble/mumble.16x16.png" /> |
|||
|
|||
<script type="text/javascript" src="/static/ext-2.2/adapter/ext/ext-base.js"></script> |
|||
<script type="text/javascript" src="/static/ext-2.2/ext-all.js"></script> |
|||
|
|||
{% block HeadTag %} |
|||
{% endblock %} |
|||
</head> |
|||
<body bgcolor="#3B69AD"> |
|||
<div id="content"> |
|||
<!-- header --> |
|||
<div id="headpanel"> |
|||
<div id="headlinks"> |
|||
{% if user.is_authenticated %} |
|||
<a href="/accounts/logout">Logout</a> | |
|||
{% else %} |
|||
<a href="/accounts/login">Login</a> | |
|||
{% endif %} |
|||
<a href="/admin" target="_blank">Admin</a> | |
|||
<a href="/accounts/imprint">Imprint</a> |
|||
</div> |
|||
<h2>{% block Headline %}{% endblock %}</h2> |
|||
</div> |
|||
<!-- navi --> |
|||
<div id="navipanel"> |
|||
<ul id="navilinks"> |
|||
<li><a href="/">Home</a></li> |
|||
{% if MumbleActive %} |
|||
<li><b>Mumble</b></li> |
|||
{% else %} |
|||
<li><a href="/mumble">Mumble</a></li> |
|||
{% endif %} |
|||
{% if ProfileActive %} |
|||
<li><b>Profile</b></li> |
|||
{% else %} |
|||
<li><a href="/accounts/profile">Profile</a></li> |
|||
{% endif %} |
|||
</ul> |
|||
</div> |
|||
<!-- content --> |
|||
<div id="contentpanel"> |
|||
<div id="contentleft"> |
|||
{% block LeftColumn %} |
|||
{% endblock %} |
|||
</div> |
|||
<div id="contentright"> |
|||
{% block Content %} |
|||
{% endblock %} |
|||
</div> |
|||
</div> |
|||
<!-- footer --> |
|||
<div id="footerpanel"> |
|||
You are using <a href="http://bitbucket.org/Svedrin/mumble-django" target="_blank">Mumble-Django</a> -- |
|||
interface built using <a href="http://extjs.com/" target="_blank">ExtJS</a> |
|||
</div> |
|||
</div> |
|||
</body> |
|||
</html> |
|||
|
|||
<html> |
|||
<head> |
|||
<title>Mumble Administration</title> |
|||
<meta http-equiv="Content-type" content="text/html; charset=utf-8" /> |
|||
|
|||
<link rel="stylesheet" type="text/css" href="/static/ext-2.2/resources/css/ext-all.css" /> |
|||
<link rel="stylesheet" type="text/css" href="/static/style.css" /> |
|||
<link rel="stylesheet" type="text/css" href="/static/templatestyle.css" /> |
|||
<link rel="stylesheet" type="text/css" href="/static/mumble/style.css" /> |
|||
<link rel="shortcut icon" type="image/png" href="/static/mumble/mumble.16x16.png" /> |
|||
|
|||
<script type="text/javascript" src="/static/ext-2.2/adapter/ext/ext-base.js"></script> |
|||
<script type="text/javascript" src="/static/ext-2.2/ext-all.js"></script> |
|||
|
|||
{% block HeadTag %} |
|||
{% endblock %} |
|||
</head> |
|||
<body bgcolor="#3B69AD"> |
|||
<div id="content"> |
|||
<!-- header --> |
|||
<div id="headpanel"> |
|||
<div id="headlinks"> |
|||
{% if user.is_authenticated %} |
|||
<a href="/accounts/logout">Logout</a> | |
|||
{% else %} |
|||
<a href="/accounts/login">Login</a> | |
|||
{% endif %} |
|||
<a href="/admin" target="_blank">Admin</a> | |
|||
<a href="/accounts/imprint">Imprint</a> |
|||
</div> |
|||
<h2>{% block Headline %}{% endblock %}</h2> |
|||
</div> |
|||
<!-- navi --> |
|||
<div id="navipanel"> |
|||
<ul id="navilinks"> |
|||
<li><a href="/">Home</a></li> |
|||
{% if MumbleActive %} |
|||
<li><b>Mumble</b></li> |
|||
{% else %} |
|||
<li><a href="/mumble">Mumble</a></li> |
|||
{% endif %} |
|||
{% if ProfileActive %} |
|||
<li><b>Profile</b></li> |
|||
{% else %} |
|||
<li><a href="/accounts/profile">Profile</a></li> |
|||
{% endif %} |
|||
</ul> |
|||
</div> |
|||
<!-- content --> |
|||
<div id="contentpanel"> |
|||
<div id="contentleft"> |
|||
{% block LeftColumn %} |
|||
{% endblock %} |
|||
</div> |
|||
<div id="contentright"> |
|||
{% block Content %} |
|||
{% endblock %} |
|||
</div> |
|||
</div> |
|||
<!-- footer --> |
|||
<div id="footerpanel"> |
|||
You are using <a href="http://bitbucket.org/Svedrin/mumble-django" target="_blank">Mumble-Django</a> -- |
|||
interface built using <a href="http://extjs.com/" target="_blank">ExtJS</a> |
|||
</div> |
|||
</div> |
|||
</body> |
|||
</html> |
|||
|
Write
Preview
Loading…
Cancel
Save
Reference in new issue