{% macro formGroupRow(label, content, class, col) %} {% if content is iterable %}
{{ _self.formGroupRow(label|upper, '', 'col-6 text-warning text-right', 6) }} {% for key,value in content %} {{ _self.formGroupRow(key, value, 'col-3 text-primary text-right', 9) }} {% endfor %}
{% else %}
{{ label }}
{{ content }}
{% endif %} {% endmacro %} {% from _self import formGroupRow %}