{% extends "page.html" %} {% from "macros.html" import batch_footer %} {% block title %} List of issues - {{ request.dispname }} - {{ config.TRACKER_NAME }} {% endblock %} {% block body_title %} List of issues - {{ request.dispname }} {% endblock %} {% block content %} {% if not (context.is_view_ok() or request.user.hasRole('Anonymous')) %}

You are not allowed to view this page.

{% endif %} {% if not context.is_view_ok() and request.user.hasRole('Anonymous') %}

Please login with your username and password.

{% endif %} {% if context.is_view_ok() %} {% if request.show.priority %}{% endif %} {% if request.show.id %}{% endif %} {% if request.show.creation %}{% endif %} {% if request.show.activity %}{% endif %} {% if request.show.actor %}{% endif %} {% if request.show.keyword %}{% endif %} {% if request.show.title %}{% endif %} {% if request.show.status %}{% endif %} {% if request.show.creator %}{% endif %} {% if request.show.assignedto %}{% endif %} {% set batch = request.batch() %} {% for i in batch %} {% for r in request.group %} {% endfor %} {% if request.show.priority %}{% endif %} {% if request.show.id %}{% endif %} {% if request.show.creation %}{% endif %} {% if request.show.activity %}{% endif %} {% if request.show.actor %}{% endif %} {% if request.show.keyword %}{% endif %} {% if request.show.title %}{% endif %} {% if request.show.status %}{% endif %} {% if request.show.creator %}{% endif %} {% if request.show.assignedto %}{% endif %} {% endfor %} {% if batch %} {{ batch_footer(request, batch) }} {% endif %}
PriorityIDCreationActivityActorKeywordTitleStatusCreatorAssigned To
{{ i[r[1]] }}
{{ i.priority.plain() }}{{ i.id }}{{ i.creation.reldate() }}{{ i.activity.reldate() }}{{ i.actor.plain() }}{{ i.keyword.plain() }}{{ i.title.plain(hyperlink=0) }}{{ i.status.plain() }}{{ i.creator.plain() }}{{ i.assignedto.plain() }}
{% endif %} Download as CSV
{% if batch or true %} {% for n in range(2) %} {% set key = request.sort|length > n and request.sort[n] %} {% endfor %} {% for n in range(2) %} {% set key = request.sort|length > n and request.group[n] %} {% endfor %} {% endif %}
{% if not n %}Sort on:{% endif %} Descending:
{% if not n %}Group on:{% endif %} Descending:
{{ request.indexargs_form(sort=0, group=0)|safe }}
{% endblock %}