{% load humanize %} {% if post.status != 'D' %}
{% csrf_token %}
{{ comment_form.comment.errors }} {{ comment_form.comment }}
{{ comment_form.excerpt }}
{% endif %}
{% for comment in post.comments.all %}

{{ comment.user.get_full_name }}

{{ comment }}

{% if comment.excerpt %}
... {{ comment.excerpt }} ...
{% endif %}
{% if comment.user == user %} delete comment {% endif %}

{{ comment.date_created|naturaltime }}

{% endfor %}