{# Display a table showing all/open/closed tickets. #} {% extends theme("layout.html") %} {% set search_form=None %} {% set title = _("Tickets") %} {% block content %}
{{ _("{result_len:d} Tickets found.").format(result_len=results|length) }}
{{ _("Summary") }} | {{ _("Status") }} | {{ _("Updated") }} | {{ _("Assignee") }} | E | D | S | P | {{ _("Tags") }} |
---|---|---|---|---|---|---|---|---|
{{ result['summary'] }} | {{ _("Closed") if result['closed'] else _("Open") }} | {{ result.get('mtime', '').strftime('%Y-%m-%d') }} | {{ get_assigned_to_info(result) }} | {{ result.get('effort', '') }} | {{ result.get('difficulty', '') }} | {{ result.get('severity', '') }} | {{ result.get('priority', '') }} | {% for tag in result['tags'] %} {{ tag }} {% endfor %} |
{{ _("Tip: Sort multiple columns simultaneously by holding down the Shift key and clicking on additional column headers!") }}
{% else %}{{ _("No tickets found.") }}
{% endif %} {% endblock %} {% block body_scripts %} {{ super() }} {% endblock %}