{% for customer in customers %} {% if customer.id != 0 %} {% endif %} {% endfor %}
{{ 'customer.firstname'|trans }} {{ 'customer.lastname'|trans }} {{ 'customer.company'|trans }} {{ 'customer.count.books'|trans }} {{ 'customer.action'|trans }}
{{ customer.firstname }} {{ customer.lastname }} {% for address in customer.customerAddresses %} {% if address.company|length > 0 %} {{ address.company }} {% endif %} {% endfor %} {{ customer.bookedReservations|length }}
{% include 'paginator.html.twig' with { 'url' : path('customers.overview') } %}