{# Form rendering for Fieldset —
/ with bordered box #} {% from "partials/macros/form_item.html" import render_item with context %} {% set _section_span = _span_map[item.get_col_span()] if item.get_col_span() in _span_map else "" %} {% set cols_class = _cols_map[item.get_cols()] if item.get_cols() in _cols_map else "grid-cols-1" %}
{% if item.get_title() %}{{ item.get_title() }}{% endif %} {% if item.get_description() %}

{{ item.get_description() }}

{% endif %}
{% for child in item.get_fields() %}{{ render_item(child) }}{% endfor %}