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

Список компаний

{% for item in objects %} {% endfor %}
id Компания  
{{ item.id }} {{ item.name }} Изменить Удалить
Добавить компанию {# pagination #} {% include 'admin/includes/admin_pagination.html' with page_obj=objects %}
{% endblock %}