{% extends "base.html" %} {% load i18n %} {% load modeltags %} {% block context_menu %}
{% trans "Back to list" %}
{% endblock %} {% block content %}
{% with issue as object %}
{% if user.is_superuser and issue.owner %}{% endif %}{{ issue.owner|display_name }}{% if user.is_superuser %}{% endif %}
{{ issue.get_category_display }}
{% with "update_date" as name %} {% include "detail_field.html" %} {% endwith %} {% with "subject" as name %} {% include "detail_multiline_field.html" %} {% endwith %} {% with "message" as name %} {% include "detail_multiline_field.html" %} {% endwith %} {% endwith %}

{% trans "Comments" %}

{% if issue.comment_set.all %}
{% for comment in issue.comment_set.all %} {% endfor %}
{% trans "Author" %} {% trans "Update date" %} {% trans "Message" %}
{{ comment.owner|display_name }} {{ comment.update_date }} {{ comment.message|linebreaksbr }}
{% else %}
{% trans "No comments" %}
{% endif %}

{% trans "Comment" %}

{% csrf_token %}
{% with commentForm as form %} {% include "form.html" %} {% endwith %}
{% endblock %}