templates/web/customer/model/form/content.twig line 1

Open in your IDE?
  1. {##
  2.  # ____file_title____
  3.  #}
  4. {% for section, data in this.getFormFieldsForDisplay() %}
  5.   <div class="section {{ section }}-section">
  6.     {% if this.isShowSectionHeader(section) %}
  7.       <div class="header {{ section }}-header">{{ data.sectionParamWidget.display() }}</div>
  8.     {% endif %}
  9.     <ul class="table {{ section }}-table">
  10.       {% for field in data.sectionParamFields %}
  11.         <li class="{{ field.getWrapperClass() }} {{ this.getItemClass(loop.index, loop.length, field) }}">
  12.           {{ this.displayCommentedData(this.getFieldCommentedData(field)) }}
  13.           {{ field.display() }}
  14.         </li>
  15.       {% endfor %}
  16.     </ul>
  17.   </div>
  18. {% endfor %}