{# Display a form to search for tickets using meta data such tags, priority, etc. #} {% extends theme("layout.html") %} {% import "forms.html" as forms %} {% set title = _("Advanced Search") %} {% block content %}
{{ _("ID") }} | {{ _("Summary") }} | {{ _("Status") }} | {{ _("Updated") }} | {{ _("Assignee") }} | E | D | S | P | {{ _("Tags") }} |
---|---|---|---|---|---|---|---|---|---|
{{ result['itemid'][:4] }} | {{ 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 %} |
{{ _("No tickets found.") }}
{% endif %} {% endblock %} {% block head %} {{ super() }} {% endblock %} {% block body_scripts %} {{ super() }} {% endblock %}