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