2008-05-07 11:04:18 +02:00
{% extends "helpdesk/base.html" %}{% load i18n %}
2008-04-02 01:26:12 +02:00
2008-05-07 11:04:18 +02:00
{% block helpdesk_title %}{% trans "Reports & Statistics" %}{% endblock %}
2008-04-02 01:26:12 +02:00
2009-12-23 12:47:50 +01:00
{% block helpdesk_body %}
2011-05-11 12:07:46 +02:00
< h2 > {% trans "Reports & Statistics" %}< / h2 >
2008-04-02 01:26:12 +02:00
2011-05-11 12:07:46 +02:00
{% ifequal number_tickets 0 %}
< p > {% trans "You haven't created any tickets yet, so you cannot run any reports." %}< / p >
2009-12-23 12:47:50 +01:00
{% else %}
2008-04-02 01:26:12 +02:00
< ul >
2011-05-11 12:07:46 +02:00
< li > {% trans "Reports By User" %}< ul >
2008-04-02 01:26:12 +02:00
2011-05-11 12:07:46 +02:00
< li > < a href = 'userpriority/{% if saved_query %}?saved_query={{ saved_query }}{% endif %}' > {% trans "by Priority" %}< / a > < / li >
< li > < a href = 'userqueue/{% if saved_query %}?saved_query={{ saved_query }}{% endif %}' > {% trans "by Queue" %}< / a > < / li >
< li > < a href = 'userstatus/{% if saved_query %}?saved_query={{ saved_query }}{% endif %}' > {% trans "by Status" %}< / a > < / li >
< li > < a href = 'usermonth/{% if saved_query %}?saved_query={{ saved_query }}{% endif %}' > {% trans "by Month" %}< / a > < / li >
2008-04-02 01:26:12 +02:00
< / ul > < / li >
2011-05-11 12:07:46 +02:00
< li > {% trans "Reports By Queue" %}< ul >
2008-04-02 01:26:12 +02:00
2011-05-11 12:07:46 +02:00
< li > < a href = 'queuepriority/{% if saved_query %}?saved_query={{ saved_query }}{% endif %}' > {% trans "by Priority" %}< / a > < / li >
< li > < a href = 'queuestatus/{% if saved_query %}?saved_query={{ saved_query }}{% endif %}' > {% trans "by Status" %}< / a > < / li >
< li > < a href = 'queuemonth/{% if saved_query %}?saved_query={{ saved_query }}{% endif %}' > {% trans "by Month" %}< / a > < / li >
2012-08-07 15:51:52 +02:00
< li > < a href = 'daysuntilticketclosedbymonth/{% if saved_query %}?saved_query={{ saved_query }}{% endif %}' > {% trans "Days until ticket closed by Month" %}< / a > < / li >
2008-04-02 01:26:12 +02:00
< / ul > < / li >
< / ul >
2011-05-11 12:07:46 +02:00
{% endifequal %}{% endblock %}