{% extends 'base.html.twig' %} {% block title %} Liste de contacts / clients {% endblock %} {% block stylesheets %} {% endblock %} {% block body %} {{form(form)}} {% if listeContacts %}
{% for c in listeContacts %}
{{c.address}} {{c.zipcode}} {{c.city}}
{% endfor %} {{knp_pagination_render(listeContacts)}}
{% else %}

Il n'existe encore aucun contact dans la base.

{% endif %} {% endblock %}