{% if not request.is_xhr %} {% endif %}
{{current_user.name}}
{{current_user.email}}
{{comment.body|urlize|markdown}}
{% if request.method == "POST" and not current_user.is_authenticated() %}- Thanks, your comment will be moderated!
{% endif %}
{% for comment in comments %}
-
{% endfor %}
{% endfor %}
{% endfor %}
@{{comment.author_name}} at {{comment.created_at.strftime("%m/%d/%Y %H:%M")}}
{{comment.body|urlize|markdown}}
{%for reply in comment.replies.filter(parent="") %}@{{reply.author_name}} at {{reply.created_at.strftime("%m/%d/%Y %H:%M")}}
{{reply.body|urlize|markdown}} {%for treply in comment.replies.filter(parent=reply.uid) %}@{{treply.author_name}} at {{treply.created_at.strftime("%m/%d/%Y %H:%M")}}
{{treply.body|urlize|markdown}}