{% extends "cabinet/base_cabinet.html" %} {% load i18n %} {% block title %}Настройки сайта{% endblock %} {% block sidebar %} {% include "cabinet/includes/_sidebar_staff.html" with cabinet_sidebar_title="Настройки" cabinet_sidebar=tabs %} {% endblock %} {% block cabinet_content %}
{% if messages %}
{% for message in messages %} {% endfor %}
{% endif %}

Настройки сайта

{% csrf_token %} {% for tab in tabs %}

{{ tab.label }}

{% include tab.partial_path %}
{% endfor %}
{% endblock %}