{% extends "cabinet/base.html" %} {% block content %}

{{ module.label }}

{{ page.title }}

{% if page.subtitle %}

{{ page.subtitle }}

{% endif %}
{% for action in page.actions %}{{ action.label }}{% endfor %}
{% if page.back_url %}

← Back

{% endif %} {% if page.fields %}
{% for field in page.fields %}
{{ field.label }}
{{ field.value }}
{% endfor %}
{% endif %} {% for section in page.sections %}

{{ section.title }}

{% for field in section.fields %}
{{ field.label }}
{{ field.value }}
{% endfor %}
{% endfor %} {% endblock %}