templates/main/showcustomers.html.twig line 1
{% extends 'static.html.twig' %}
{% block title %}annuaires - {% endblock %}
{% block body %}
{% for customer in business %}
{% if customer.CustmerType == 'vip' or customer.CustmerType == 'VIP'%}
{{customer.BusinessName}}
Mbl
{{ customer.Mobile }}
Email
{{ customer.Email }}
{{customer.StreetAddress}}
{% else %}
{{customer.BusinessName}}
Mbl
{{ customer.Mobile }}
Email
{{ customer.Email }}
{{customer.StreetAddress}}
{% endif %}
{% endfor %}
{{ knp_pagination_render(business) }}
{% endblock %}