{% extends 'layout/page.html' %} {% block head_title %} {% trans %}List of issues{% endtrans %} {% endblock %} {% block page_header %} {% trans %}List of issues{% endtrans %} {% endblock %} {% block content %} {% include 'layout/permission.html' %} {% if context.is_view_ok() %} {% set batch = request.batch() %} {% if batch %} {% if request.show.priority %} {% endif %} {% if request.show.id %} {% 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 %} {% for issue in batch %} {% if request.group|length %} {% set group = [request.group[0][1], request.group[1][1]] if request.group|length >= 2 else [request.group[0][1]] %} {% if batch.propchanged(*group) %} {% endif %} {% endif %} {% if request.show.priority %} {% endif %} {% if request.show.id %} {% 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 %}
{% trans %}Priority{% endtrans %}{% trans %}ID{% endtrans %}{% trans %}Activity{% endtrans %}{% trans %}Actor{% endtrans %}{% trans %}Keyword{% endtrans %}{% trans %}Title{% endtrans %}{% trans %}Status{% endtrans %}{% trans %}Creator{% endtrans %}{% trans %}Assigned To{% endtrans %}
{%- for g in group -%} {%- if issue[g] %} {% if g == 'id' %}{{ issue[g] }}{% else %}{{ issue[g].plain()|u }}{% endif %} {% else %} (no {{ g }} set) {% endif -%} {%- endfor -%}
{{ issue.priority.plain()|u }}{{ issue.id }}{{ issue.activity.reldate()|u }}{{ issue.actor.plain()|u }}{{ issue.keyword.plain()|u }} {{ issue.title.plain(hyperlink=0)|u }} {{ issue.status.plain()|u }}{{ issue.creator.plain()|u }}{{ issue.assignedto.plain()|u }}
{% include 'layout/pagination.html' %}
{% trans %}Download as CSV{% endtrans %}
{% include 'layout/sort.html' %} {% else %}

{% trans %}There are no issues yet!{% endtrans %}

{% endif %} {% endif %} {% endblock %}