{% extends 'base.html.twig' %} {% block title %}{{'Clients'|trans}}{% endblock %} {% block page_title %}{{'Clients'|trans}}{% endblock %} {% block breadcrumb %} {% endblock %} {% block buttons %} {{'Add'|trans}} {% endblock %} {% block body %} {% for label, messages in app.flashes %}
{% for message in messages %}

{{ message }}

{% endfor %}
{% endfor %}
{% for client in clients %} {% endfor %}
# {{'Firstname'|trans}} {{'Lastname'|trans}} {{'Email'|trans}} {{'Fidelity'|trans}} {{'Actions'|trans}}
{{ client.id }} {{ client.firstname }} {{ client.lastname }} {{ client.email }} {{ client.fidelity }} {{'Edit'|trans}} {{'Delete'|trans}}
{% endblock %}