{% load i18n bootstrap3 %}

{% trans 'Task comments' %}

{% for comment in comments %} {% with author=comment.author %}
{% if comment.author == request.user %} {% endif %}
{{ author.get_short_name }} {{ comment.date_create|date:'d M, H:i:s' }}

{{ comment.text }}

{% endwith %} {% empty %}

{% trans 'Comment history is empty' %}

{% endfor %}
{% if perms.taskapp.add_extracomment %}
{% csrf_token %} {% bootstrap_form comment_form %} {% buttons %} {% endbuttons %}
{% endif %}