templates/areas/form-configurator/view.html.twig line 1

Open in your IDE?
  1. <style>
  2. .pimcore_area_form-configurator > .pimcore_area_edit_button {
  3.     z-index: 999!important;
  4. }
  5. </style>
  6. {% if formTemplate is defined and formTemplate %}
  7.     <div class="row">
  8.         <div class="col-sm-12">
  9.             {% include formTemplate with {
  10.                     "form": formObject,
  11.                     "form_title": pimcore_input("form_title").getData(),
  12.                     "form_subtitle": pimcore_input("form_subtitle").getData()
  13.                 } %}
  14.         </div>
  15.     </div>
  16. {% else %}
  17.     {% if editmode %}
  18.         <div class="row">
  19.             <div class="col-sm-12">
  20.                 <i>Please select form type</i>
  21.             </div>
  22.         </div>
  23.     {% endif %}
  24. {% endif %}