{% load staticfiles %} {% if post.comments.count %}
{{ post.comments.count }} Comments
{% endif %} {% for comment in post.comments.all %}
{{ comment.owner.user.first_name }} {{ comment.owner.user.last_name }} {{ comment.created_at|timesince }} ago
{{ comment.text}}
{% endfor %}
{% csrf_token %}