templates/boutiques/index.html.twig line 1

  1. {% extends 'base.html.twig' %}
  2. {% block title %}Les boutiques!{% endblock %}
  3. {% block body %}
  4. Accueil
  5. Liste des boutiques
  • Les boutiques/Agences

  • {% if app.user == null %}
  • Je crée ma boutique
  • {% endif %}

  • {% for boutique in boutiques %}
  • {% if boutique.nom != null %}
  • {% if boutique.logo != null %}
  • {% else %}
  • {% endif %}
  • Non certifié
  • {{boutique.nom}}

  • Visiter
  • {% endif %}
  • {% endfor %}
  • {% if boutiques is not null %}
  • {{ knp_pagination_render(boutiques, 'paginator.html.twig') }}
  • {% endif %}
  • {% endblock %}