{% extends 'base.html' %} {% load i18n %} {% block title %} {% trans 'Blog' %} {% endblock %} {% block body %} {% for post in post_list %}

{{ post.title }}

{{ post.category }}

{{ post.description }}

{% empty %}

{% trans 'Sorry, nothing to see yet.' %}

{% endfor %}
{% if category_list %} {% trans 'Categories' %}:
{% endif %} {% if user.is_staff %}
{% endif %} {% endblock %}