{% extends "base.html" %} {% load i18n %} {% load modeltags %} {% block context_menu %}
{% trans "Send an issue" %}
{% if state == "closed" %}
{% trans "View open issues" %}
{% endif %} {% if state == "open" %}
{% trans "View closed issues" %}
{% endif %} {% endblock %} {% block content %} {% if issues %}
{% if state == "open" %}{% endif %} {% if user.is_superuser %}{% endif %} {% for issue in issues %} {% if state == "open" %}{% endif %} {% if user.is_superuser %}{% endif %} {% endfor %}
{% trans "Subject" %} {% trans "Author" %} {% trans "Update date" %} {% trans "Last comment" %} {% trans "Category" %} {% trans "Comments" %}{% trans "Votes" %}{% trans "Ref" %}
{{ issue.subject }} {{ issue.owner|display_name }} {{ issue.update_date }} {{ issue.last_comment_date }} {{ issue.get_category_display }} {{ issue.comments }}{{ issue.votes }}{% if issue.external_reference %}{{ issue.external_reference }}{% endif %}
{% else %}
{% trans "No issues" %}
{% endif %} {% endblock %}