{% extends "base.html" %} {% load comments %} {% block header %}{{ block.super }}Article Detail{% endblock %} {% block content %}

{{ object.title }}

Published {{ object.publish }}
{{ object.body|linebreaks }}
back to the articles list
{% get_comment_count for object as comment_count %} {% if comment_count %}

{{ comment_count }} comment{{ comment_count|pluralize }}

{% endif %}
{% render_comment_list for object %}
{% if object.allow_comments %}

your comment

{% render_comment_form for object %}
{% else %}

comments are disabled for this article

{% endif %}
{% endblock %}