{% extends 'admin/base.html.twig' %} {% block title %}Les clients | Administration{% endblock %} {% block body %} {% for message in app.flashes('success') %} {% endfor %}

Les clients

Vous avez {{ clients|length }} client(s)
Nom
Action
{% for client in clients %}
{{ client.name }}
{{ include('admin/client/_delete_form.html.twig') }}
{% endfor %}
{% endblock %}