forked from extern/django-helpdesk
7dfb38eab9
* Added statistics views, making use of Google Charts * Added initial data fixture, to automatically create e-mail templates at install-time
30 lines
1.6 KiB
HTML
30 lines
1.6 KiB
HTML
<html>
|
|
<head>
|
|
<title>{% block helpdesk_title %}Helpdesk{% endblock %}</title>
|
|
<script src='{{ MEDIA_URL }}/helpdesk/jquery.js' type='text/javascript' language='javascript'></script>
|
|
<link rel='stylesheet' href='{{ MEDIA_URL }}/helpdesk/helpdesk.css' type='text/css' />
|
|
{% block helpdesk_head %}{% endblock %}
|
|
</head>
|
|
<body>
|
|
<div id='container'>
|
|
<div id='header'>
|
|
<h1>Helpdesk</h1>
|
|
<ul>
|
|
<li><a href='{% url helpdesk_home %}'>Dashboard</a></li>
|
|
<li><a href='{% url helpdesk_list %}'>Tickets</a></li>
|
|
<li><a href='{% url helpdesk_submit %}'>New Ticket</a></li>
|
|
<li><a href='{% url helpdesk_report_index %}'>Stats</a></li>
|
|
<li><a href='{% url logout %}'>Logout</a></li>
|
|
{% if not query %}<li><form id='searchform' method='get' action='{% url helpdesk_list %}'><input type='text' name='q' size='10' class='input' value='Search...' id='search_query' onFocus='s = document.getElementById("search_query");if (s.value == "Search...") { s.value = ""; }' /><input type='hidden' name='status' value='1' /><input type='hidden' name='status' value='2' /><input type='hidden' name='status' value='3' /></form></li>{% endif %}
|
|
</ul>
|
|
</div>
|
|
<div id='body'>
|
|
{% block helpdesk_body %}{% endblock %}
|
|
</div>
|
|
<div id='footer'>
|
|
<p>Powered by <a href='http://www.jutda.com.au/'>Jutda HelpDesk</a>. <a href='{% url helpdesk_rss_index %}'><img src='{{ MEDIA_URL }}/helpdesk/rss_icon.png' width='14' height='14' alt='RSS Icon' title='RSS Feeds' border='0' />RSS Feeds</a></p>
|
|
</div>
|
|
</div>{% include "helpdesk/debug.html" %}
|
|
</body>
|
|
</html>
|