{% load djblets_utils %} {% load i18n %} {% load reviewtags %} {% if issues.total > 0 %}
{% trans "Total" %}:
{{issues.total}}
{% trans "Open" %}:
{{issues.open}}
{% trans "Resolved" %}:
{{issues.resolved}}
{% trans "Dropped" %}:
{{issues.dropped}}
{% trans "Status:" %}
{% trans "From:" %}
{% for entry in entries %} {% if entry.review %} {% for comment_type, comments in entry.comments.items %} {% for comment in comments %} {% if comment.issue_opened %} {% endif %} {% endfor %} {% endfor %} {% endif %} {% endfor %}
{% trans "Issue ID" %} {% trans "Description" %} {% trans "From" %} {% trans "Last Updated" %} {% trans "Status" %}
{{comment.comment_type|capfirst}} {{comment.id}} {{comment}} {{entry.review.user|user_displayname}} {{comment.timestamp}} {{comment.issue_status|pretty_print_issue_status|capfirst}}
{% endif %}