{% load datetime_filter %} {% load humanize %} {% load i18n %}
{% blocktrans count score=comment.score %} {{ score }} point {% plural %} {{ score }} points {% endblocktrans %} {% url 'user' comment.author.id as author_url %} {% blocktrans with author_name=comment.author.username time_str=comment.created|to_datetime|naturaltime raw_time=comment.created %} {{ author_name }} commented {% endblocktrans %}
{{ comment.content_html | safe }}
{% csrf_token %}
{% for reply in comment.replies.items %} {% with comment=reply template_name="comment.html" %} {% include template_name %} {% endwith %} {% endfor %}