{% load todo_extras %}

Комментарии

{% if task.comments.all %}
{% for comment in task.comments.all %}
{{comment.message|sanitize}}
{{comment.author|username}}, {{comment.created_at|format_date}}  (ответить) {% ifequal comment.author user %} {% include "todo/comment_actions.html" %} {% else %} {% if perms.todo.delete_comment %} {% include "todo/comment_actions.html" %} {% endif %} {% endifequal %}
{% endfor %}
{% endif %}
{% include "todo/wysiwyg.html" %}