templates/web/customer/model/body.twig line 1

Open in your IDE?
  1. {##
  2.  # ____file_title____
  3.  #}
  4. {% if this.getTopInlineJSCode() %}
  5.   <script>{{ this.getTopInlineJSCode()|raw }}</script>
  6. {% endif %}
  7. {% include this.getDir() ~ '/header.twig' %}
  8.   {% form this.getFormClass() with this.getFormWidgetParams() %}
  9.     <div class="{{ this.getContainerClass() }}">
  10.       {% include this.getDir() ~ '/form_content.twig' %}
  11.       {% if not this.useButtonPanel() %}
  12.         {% include this.getDir() ~ '/' ~ this.getFormTemplate('buttons') %}
  13.       {% endif %}
  14.       {% if this.useButtonPanel() %}
  15.         {{ widget(this.getButtonPanelClass()) }}
  16.       {% endif %}
  17.     </div>
  18.   {% endform %}
  19. {% include this.getDir() ~ '/footer.twig' %}
  20. {% if this.getBottomInlineJSCode() %}
  21.   <script>{{ this.getBottomInlineJSCode()|raw }}</script>
  22. {% endif %}