{% extends 'base.html.twig' %} {% block title %} Customer index {% endblock %} {% block body %} {% if app.request.get('error') %} {% if app.request.get('error') == 'subscription-no-customer' %} {% endif %} {% endif %}
{% for customer in customers %} {% else %} {% endfor %}
Id Firstname Lastname Email Phone Country Color Actions
{{ customer.id }} {{ customer.firstname }} {{ customer.lastname }} {{ customer.email }} {{ customer.phone }} {{ customer.address.country.getName() }}
{{ include('customer/_delete_form.html.twig') }}
no records found
{% endblock %}