mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-11-30 03:43:46 +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.
28 lines
660 B
HTML
28 lines
660 B
HTML
{% extends "helpdesk/base.html" %}{% load i18n %}
|
|
|
|
{% block helpdesk_title %}{% trans "Reports & Statistics" %}{% endblock %}
|
|
|
|
{% block helpdesk_body %}{% blocktrans %}
|
|
<h2>Reports & Statistics</h2>
|
|
|
|
<ul>
|
|
<li>User<ul>
|
|
|
|
<li><a href='userpriority/'>by Priority</a></li>
|
|
<li><a href='userqueue/'>by Queue</a></li>
|
|
<li><a href='userstatus/'>by Status</a></li>
|
|
<li><a href='usermonth/'>by Month</a></li>
|
|
|
|
</ul></li>
|
|
|
|
<li>Queue<ul>
|
|
|
|
<li><a href='queuepriority/'>by Priority</a></li>
|
|
<li><a href='queuestatus/'>by Status</a></li>
|
|
<li><a href='queuemonth/'>by Month</a></li>
|
|
|
|
</ul></li>
|
|
</ul>
|
|
|
|
{% endblocktrans %}{% endblock %}
|