{% extends 'base.html' %} {% block body %} {% comment %} Displays lists of all articles in the table and creating buttons which can change each article {% endcomment %}

Список статей

{% for item in objects %} {% endfor %}
id Заголовок Автор  
{{ item.id }} {{ item.main_title }} {% ifnotequal item.user None %}{{ item.user }} {% endifnotequal %} Изменить Удалить
Добавить статью
{% endblock %}