{% 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 %}
{% for item in section["items"] %}
{{ item["label"] }}
{{ item["value"] }}
{% endfor %}
{% 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 %}
No content

No sections available for this page.

{% endif %}
{% endblock %}