{% extends "base.html" %} {% load i18n comments %} {% block header %}{{ block.super }}{% trans "Blog - Story Detail" %}{% endblock %} {% block content %}

{{ object.title }}

Published {{ object.publish }}
{{ object.body|linebreaks }}

{% trans "Story 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 %}

{% trans "comments are disabled for this story" %}

{% endif %}
{% endblock %}