mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2025-01-08 15:08:55 +01:00
dfb821336e
text to assist with future translation efforts. I've no doubt missed a few. Also we don't have a "Change Language" view in here, unsure if this should be a helpdesk function or a function of the parent project. * Updated svn:ignore to ignore .pyc files * Added new function to replace cursor.dictfetchall() which is available in psycopg1 but not psycopg2. New function should work across other database systems, but is untested.
26 lines
892 B
HTML
26 lines
892 B
HTML
{% load i18n %}<html>
|
|
<head>
|
|
<title>{% block helpdesk_title %}{% trans "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>{% trans "Helpdesk" %}</h1>
|
|
<ul>
|
|
<li><a href='{% url helpdesk_home %}'>{% trans "Submit A Ticket" %}</a></li>
|
|
<li><a href='{% url login %}'>{% trans "Log In" %}</a></li>
|
|
</ul>
|
|
</div>
|
|
<div id='body'>
|
|
{% block helpdesk_body %}{% endblock %}
|
|
</div>
|
|
<div id='footer'>
|
|
<p>{% trans "Powered by <a href='http://www.jutda.com.au/'>Jutda HelpDesk</a>." %}</p>
|
|
</div>
|
|
</div>{% include "helpdesk/debug.html" %}
|
|
</body>
|
|
</html>
|