{% extends "helpdesk/base.html" %} {% load humanize %} {% 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 %}
{% comment %}{% endcomment %}
{% 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 %}
{% if not from_saved_query %}
{% 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 %}
{% endif %}

{% csrf_token %}
{{ search_message|safe }}
{% for ticket in tickets.object_list %} {% empty %} {% endfor %}
{% trans "Tickets" %}
# {% 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 }}
{% trans "No Tickets Match Your Selection" %}
{% if request.user.is_staff %}

{% trans "All" %} {% trans "None" %} {% trans "Inverse" %}

{% endif %} {% csrf_token %}
{% endblock %}
{% block extra_body %} {{ block.super }} {% endblock %}