mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-12-03 13:23:23 +01:00
7dfb38eab9
* Added statistics views, making use of Google Charts * Added initial data fixture, to automatically create e-mail templates at install-time
28 lines
596 B
HTML
28 lines
596 B
HTML
{% extends "helpdesk/base.html" %}
|
|
|
|
{% block helpdesk_title %}Reports & Statistics{% endblock %}
|
|
|
|
{% block helpdesk_body %}
|
|
<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>
|
|
|
|
{% endblock %}
|