templates/form/components/form_district_base.html.twig line 1

Open in your IDE?
  1. {% include 'form/helper/form_widget_standard.html.twig' with { 'field': form.name } %}
  2. <div class="row">
  3.     <div class="col-md-6">
  4.         {% include 'form/helper/form_widget_standard.html.twig' with { 'field': form.zipcode } %}
  5.     </div>
  6.     <div class="col-md-6">
  7.         {% include 'form/helper/form_widget_standard.html.twig' with { 'field': form.federalstate } %}
  8.     </div>
  9. </div>
  10. <div class="row">
  11.     <div class="col-md-6">
  12.         {% include 'form/helper/form_widget_standard.html.twig' with { 'field': form.classification } %}
  13.     </div>
  14.     <div class="col-md-6">
  15. {#        {% if form.classification.vars.value != '100' %}#}
  16. {#        <div class="d-none">#}
  17. {#            {% endif %}#}
  18.             {% include 'form/helper/form_widget_standard.html.twig' with { 'field': form.classificationAlt } %}
  19. {#            {% if form.classification.vars.value != '100' %}#}
  20. {#        </div>#}
  21. {#        {% endif %}#}
  22.     </div>
  23. </div>