{% extends 'base.html.twig' %} {% block title %}Les clients{% endblock %} {% form_theme form 'bootstrap_4_horizontal_layout.html.twig' %} {% block title_page %}Les clients{% endblock %} {% block container_start %} {% if is_granted("ROLE_SEARCH_CUSTOMER") %} {{form_start(form)}}
{{ form_row(form.company) }}
{{ form_row(form.zipcode) }}
{{ form_row(form.city) }}
{{form_end(form)}} {% endif %}
{#

Nombre de Résultat(s) : {{ nbFind }}

#} {% if is_granted("ROLE_CREATE_CUSTOMER") %} {% endif %}
{% set i = 1 %} {% for customer in customers %} {% set i = i + 1 %} {% endfor %}
# Type Société Nom Ville Etat
{{ customer.id }} {{ customer.type }} {{ customer.company }} {{ customer.name }} {{ customer.city }} {{ customer.state }} {% if is_granted("ROLE_VIEW_CUSTOMER") %} {% endif %}
{% endblock %}