2008-04-17 07:46:55 +02:00
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
|
|
<head>
|
|
|
|
<title>{% block helpdesk_title %}Helpdesk{% endblock %} Powered by Jutda Helpdesk</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' />
|
|
|
|
<link rel='alternate' href='{% url helpdesk_rss "user" %}{{ user.username }}/' type='application/rss+xml' title='My Open Tickets' />
|
|
|
|
<link rel='alternate' href='{% url helpdesk_rss "recent" %}' type='application/rss+xml' title='All Recent Activity' />
|
|
|
|
<link rel='alternate' href='{% url helpdesk_rss "unassigned" %}' type='application/rss+xml' title='Unassigned Tickets' />
|
|
|
|
{% 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> <a href='{% url helpdesk_api_help %}'>API</a></p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% include "helpdesk/debug.html" %}
|
|
|
|
</body>
|
2007-12-27 01:29:17 +01:00
|
|
|
</html>
|