{% load static %} {% load jalali_tags %} {% load humanize %}

{{ comment.name }}

{{ comment.created_at|date:"Y/m/d-H:i" }}

{% if comment.parent %} در پاسخ به {{ comment.parent.name }} {% endif %}

{{ comment.content }}

پاسخ دادن

آیا این دیدگاه از نظر شما مفید بود؟

{{ comment.like|default:"0" }} {{ comment.dislike|default:"0" }}
{% if comment.replies.all %}
{% for child in comment.replies.all %} {% include "f_blog/comment_item.html" with comment=child %} {% endfor %}
{% endif %}