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