templates/main/showcustomers.html.twig line 1

  1. {% extends 'static.html.twig' %}
  2. {% block title %}annuaires - {% endblock %}
  3. {% block body %}
  4. Résultats de recherche pour : la rubrique : {{category_name}}

  5. {% for articles in article %}
  6. {{articles.seo|raw}}
  7. {% endfor %}
  • {% for customer in business %}
  • {% if customer.CustmerType == 'vip' or customer.CustmerType == 'VIP'%}
  • {{customer.BusinessName}}

  • Mbl
  • {{ customer.Mobile }}
  • Email
  • {{ customer.Email }}
  • explore person
  • {{customer.StreetAddress}}

  • {% else %}
  • {{customer.BusinessName}}

  • Mbl
  • {{ customer.Mobile }}
  • Email
  • {{ customer.Email }}
  • explore person
  • {{customer.StreetAddress}}

  • {% endif %}
  • {% endfor %}


  • {{ knp_pagination_render(business) }}
  • {% endblock %}