{% extends "blog/base.html" %} {% load i18n comments comment_utils generic_markup banjo_blog %} {% block content %}

{{ post.headline }}

{{ post.full_body|safe }}
Added on {{ post.create_date|date:"F j, Y" }} {% post_admin post %}
{% get_public_free_comment_list for blog.post post.id as comment_list %} {% blocktrans count comment_list|length as counter %}1 Comment{% plural %}{{ counter }} Comments{% endblocktrans %}

Comments

{% for comment in comment_list %}
#{{ forloop.counter }} {% with comment.person_name|escape as name %} {% with comment.submit_date|date as cdate %} {% with comment.submit_date|date:"P" as ctime %}

{% blocktrans %}{{ name }} commented, on {{ cdate }} at {{ ctime }}{% endblocktrans %}:

{% endwith %} {% endwith %} {% endwith %} {# {{ comment.comment|escape|urlizetrunc:40|linebreaks }} #} {{ comment.comment|apply_markup:"restructuredtext"|smartypants }}
{% endfor %}

{% trans 'Post a comment' %}

{% free_comment_form for blog.post post.id %}
{% endblock %}