{% extends "helpdesk/base.html" %} {% load i18n humanize %} {% load static from staticfiles %} {% block helpdesk_title %}{% trans "Tickets" %}{% endblock %} {% block helpdesk_head %} {% endblock %} {% block h1_title %}Tickets {% if from_saved_query %} [{{ saved_query.title }}]{% endif %}{% endblock %} {% block helpdesk_body %} {% load in_list %}
{% trans "Query Selection" %}
{% csrf_token %}

{% trans "Ordering applied to tickets" %}

{% trans "Ctrl-Click to select multiple options" %}

{% trans "Ctrl-click to select multiple options" %}

{% trans "Ctrl-click to select multiple options" %}

{% trans "Use YYYY-MM-DD date format, eg 2011-05-29" %}

{% trans "Keywords are case-insensitive, and will be looked for in the title, body and submitter fields." %}


{% if from_saved_query and saved_query.user == user %}

{% blocktrans with saved_query.title as query_name %}You are currently viewing saved query "{{ query_name }}".{% endblocktrans %} {% trans "Delete Saved Query" %}

{% endif %} {% if from_saved_query %}

{% blocktrans with saved_query.id as query_id %}Run a report on this query to see stats and charts for the data listed below.{% endblocktrans %}

{% endif %} {% csrf_token %}
{% trans "This name appears in the drop-down list of saved queries. If you share your query, other users will see this name, so choose something clear and descriptive!" %}
{% trans "Yes, share this query with other users." %}
{% trans "If you share this query, it will be visible by all other logged-in users." %}
{% csrf_token %}

{% csrf_token %}
{% trans "Query Results" %}
{{ search_message|safe }}
{% for ticket in tickets %} {% endfor %}
#   {% trans "Pr" %} {% trans "Title" %} {% trans "Queue" %} {% trans "Status" %} {% trans "Created" %} {% trans "Owner" %}
{{ ticket.ticket }} {{ ticket.priority }} {{ ticket.title }} {{ ticket.queue }} {{ ticket.get_status }} {{ ticket.created|naturaltime }} {{ ticket.get_assigned_to }}
{% csrf_token %}

{% endblock %}