{% for comment in all_comment %} {% if comment.parent == None %}
{{ comment.author }}  commented  
{{ comment.created_date | timesince }} ago
{% if user.username == comment.author %} {{ comment.children | length }} replies Edit Delete {% endif %}
{{ comment.text | safe }}
{% endif %}
{% empty %} {% endfor %}