templates/includes/ajoutaides_etape.inc.html.twig line 1

Open in your IDE?
  1. <main class="tc-desktop-2_3 tc-phone-1_1">
  2.     <section class="tc-panel">
  3.         {% include 'includes/ajoutaides_header.inc.html.twig' %}
  4.         <div class="tc-panel-body">
  5. {#            <form method="post" action="{{ url_clean_aide }}" id="masterform">#}
  6.             {{ form_start(form) }}
  7.                 <div class="tc-block tc-tablet-1_1">
  8.                     <div class="tc-block-body">
  9.                         {% if form.idtypecategorie is defined and form.idtypecategorie %}
  10.                             {{ form_label(form.idtypecategorie) }}
  11.                             {{ form_widget(form.idtypecategorie) }}
  12.                         {% endif %}
  13.                     </div>
  14.                 </div>
  15.                 <div class="tc-panel-footer">
  16. {#                    {form.hidden:h}#}
  17.                     {% if form.validation is defined and form.validation %}
  18.                         {{ form_widget(form.validation) }}
  19.                     {% endif %}
  20.                 </div>
  21. {#            </form>#}
  22.             {{ form_end(form) }}
  23.         </div>
  24.     </section>
  25. </main>