{% set section_id = section.id or id %} {% set section_title = section.title or title %} {% set section_description = section.description or description or '' %} {% set section_fields = section.fields or fields or [] %} {% set section_collapsible = section.collapsible if section.collapsible is defined else (collapsible if collapsible is defined else false) %} {% set section_expanded = section.expanded if section.expanded is defined else (expanded if expanded is defined else true) %} {% set section_icon = section.icon or icon or 'fas fa-cog' %}
{{ section_title }}
{% if section_collapsible %} {% endif %}
{% if section_description %}

{{ section_description }}

{% endif %}
{% if section_fields %}
{% for field in section_fields %}
{% include 'partials/form_field.html' %}
{% endfor %}
{% else %} {{ caller() if caller }} {% endif %} {% if section.actions or actions %}
{% for action in (section.actions or actions) %} {% endfor %}
{% endif %}