custom/plugins/MoorlForms/src/Resources/views/plugin/moorl-fb/component/element/form-row.html.twig line 1

Open in your IDE?
  1. {% set wrappedContent %}
  2.     {% for treeItem in children %}
  3.         {% set wrappedItem %}
  4.             {% sw_include "@MoorlForms/plugin/moorl-fb/component/element/#{treeItem.element.type}.html.twig" ignore missing with {
  5.                 element: treeItem.element,
  6.                 children: treeItem.children
  7.             } %}
  8.         {% endset %}
  9.         {% sw_include "@MoorlForms/plugin/moorl-fb/component/wrapper/col.html.twig" with {
  10.             wrappedContent: wrappedItem
  11.         } %}
  12.     {% endfor %}
  13. {% endset %}
  14. {% sw_include "@MoorlForms/plugin/moorl-fb/component/wrapper/wrapper.html.twig" with {
  15.     wrappedContent: wrappedContent,
  16.     sectionClasses: ['row','form-row']
  17. } %}