{% extends "base.html" %} {% load i18n comments %} {% block header %}{{ block.super }}Blog - Story List{% endblock %} {% block content %}
{% if object_list %} {% for item in object_list %} {% get_comment_count for item as comment_count %}

{{ item.title }}

{{ item.body|truncatewords:50|linebreaks }}

more ⋅ {{ comment_count }} comment{{ comment_count|pluralize }}

{% endfor %}
{% else %}
No story yet.
{% endif %}

{% trans "Blog" %}

{% endblock %}