{% extends "helpdesk/base.html" %}{% load i18n %} {% load static from staticfiles %} {% block helpdesk_title %}{% trans "Reports & Statistics" %}{% endblock %} {% block helpdesk_head %} {% if helpdesk_settings.HELPDESK_USE_CDN %} {% else %} {% endif %} {% endblock %} {% block helpdesk_body %}

{% trans "Reports & Statistics" %}

{% trans 'Saved Queries' %}
{% if user_saved_queries_ %}

{% trans "You can run this query on filtered data by using one of your saved queries." %}

{% else %}

{% trans "Want to filter this report to just show a subset of data? Go to the Ticket List, filter your query, and save your query." %}

{% endif %}
{{ title }}
{% for h in headings %} {% endfor %} {% for d in data %} {% for f in d %}{% endfor %} {% endfor %}
{% if forloop.first %}{{ h|title }}{% else %}{{ h }}{% endif %}
{{ f }}
{% if charttype == "date" %} {% endif %} {% if charttype == "bar" %} {% endif %} {% endblock %}