{% extends 'base.html' %} {% load i18n %} {% block title %} {% trans "Blogs administration" %} {% endblock %} {% block content %}
{% trans "Create new post" %}
{% for i in object_list %}
{{ i.name }} {{ i.author }} {% trans "Tags" %}: {% for tag in i.tags.all %} {{ tag }} {% endfor %}
{{ i.date }}
{% trans "Edit post" %}
{% trans "Delete post" %}

{% endfor %}
{% endblock %}