{% load i18n %}
{% for alert in chassis_page_alerts %} {% include "admin/chassis/information_alert.html" with message=alert.message color=alert.color icon_class=alert.icon_class only %} {% endfor %} {% for section in information_sections %}

{{ section.title }} {% if section.header_action %} {% if section.header_action.icon_class %} {% endif %} {% if section.header_action.show_label %} {{ section.header_action.label }} {% endif %} {% endif %}

{% if section.timeline %}
{% include "admin/chassis/timeline.html" with timeline=section.timeline only %}
{% else %}
{% for row in section.rows %} {% endfor %}
{{ row.label }} {% if row.badges %} {% for badge in row.badges %} {{ badge.label }} {% endfor %} {% elif row.icon_class %} {{ row.icon_label }} {% else %} {{ row.value|default_if_none:'—' }} {% endif %} {% if row.action %} {% if row.action.show_label %}{{ row.action.label }}{% endif %} {% endif %}
{% endif %}
{% empty %}

{% translate 'Нет информации для отображения.' %}

{% endfor %}