django-helpdeskmig/templates/helpdesk/public_base.html
Ross Poulton 2e2176547d * Added logout link/template
* Added ability for public to submit a ticket via the web if they aren't logged in
* Added ability for public to view ticket via web using ticket ID & e-mail address
* Added public ticket URL to e-mails
* Added manager to FollowUp class to
2008-01-16 00:26:24 +00:00

26 lines
806 B
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 %}'>Submit A Ticket</a></li>
<li><a href='{% url login %}'>Log In</a></li>
</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></p>
</div>
</div>{% include "helpdesk/debug.html" %}
</body>
</html>