{% if is_granted('ROLE_DDD') %} {% set extendedTemplate = '@AdminLTE/layout/ddd-layout.html.twig' %} {% else %} {% set extendedTemplate = '@AdminLTE/layout/communeodd-layout.html.twig' %} {% endif %} {% extends extendedTemplate %} {% block page_title %}{% trans %}Liste des cibles spatialisées par commune{% endtrans %}{% endblock %} {% block page_content %} {% embed '@AdminLTE/Widgets/box-widget.html.twig' %} {% block box_body %} {{ form_start(form) }}
{{ form_widget(form.commune) }}
{{ form_end(form) }} {% endblock %} {% endembed %} {% if targets|length > 0 %} {% embed '@AdminLTE/Widgets/box-widget.html.twig' %} {% block box_body %} {% for target in targets %} {% endfor %}
{% trans %}basics.code{% endtrans %} {% trans %}basics.name{% endtrans %} {% trans %}target.goal{% endtrans %}
{{ target.code }} {{ target.name }} {{ target.goal.name }}
{% endblock %} {% endembed %} {% endif %} {% endblock %} {% block javascripts %} {% endblock %} {% block stylesheets %} {% endblock %}