{% extends "base.html" %} {% block title %}{{ page_title }} · {{ app_title }}{% endblock %} {% block content %} {% include "components/page_header.html" %}
{% if back_href %} {% endif %} {% if has_warnings %}
{% for warning in warnings %} {% endfor %}
{% endif %} {% if has_sections %}
{% for section in sections %} {% if section["kind"] == "key_value" %}
{% if section.get("title") %}

{{ section["title"] }}

{% endif %} {% if section.get("no_data") %}
{% if locale == 'ru' %}Не использовалось{% else %}Not used{% endif %}
{% else %}
{% for item in section["items"] %}
{{ item["label"] }}
{% set variant = item.get("variant", "text") %} {% set tone = item.get("tone", "default") %} {% if variant == "long_text" and item.get("collapsible") %}
{{ translate("detail.show_text", locale) }}
{{ item["display"] }}
{% elif variant == "badge" and tone in ("success", "warning", "danger") %} {{ item["display"] }} {% elif variant == "boolean" %} {{ item["display"] }} {% elif variant == "confidence" %} {{ item["display"] }} {% elif item["display"] | length > 300 %}
{{ translate("detail.show_text", locale) }}
{{ item["display"] }}
{% elif variant == "badge" %} {{ item["display"] }} {% elif tone == "muted" %} {{ item["display"] }} {% elif tone == "success" %} {{ item["display"] }} {% elif tone == "warning" %} {{ item["display"] }} {% elif tone == "danger" %} {{ item["display"] }} {% else %} {{ item["display"] }} {% endif %}
{% endfor %}
{% endif %}
{% elif section["kind"] == "text" %}
{% if section.get("title") %}

{{ section["title"] }}

{% endif %}
{{ section["body"] }}
{% elif section["kind"] == "table" %}
{% if section.get("title") %}

{{ section["title"] }}

{% endif %}
{% for col in section["columns"] %} {% endfor %} {% for row in section["rows"] %} {% for col in section["columns"] %} {% endfor %} {% endfor %}
{{ col["label"] }}
{{ row[col["key"]] }}
{% elif section["kind"] == "links" %}
{% if section.get("title") %}

{{ section["title"] }}

{% endif %}
{% for item in section["items"] %} {% if item["href"] %} {{ item["label"] }} {% else %} {{ item["label"] }} {% endif %} {% endfor %}
{% endif %} {% endfor %}
{% else %}
{% if locale == 'ru' %}Нет содержимого{% else %}No content{% endif %}

{% if locale == 'ru' %}Для этой страницы нет разделов.{% else %}No sections available for this page.{% endif %}

{% endif %}
{% endblock %}