{% extends 'base.html.twig' %} {% block title %}Produit SAINT LEMAN{% endblock %} {###################################} {# block main of the prodcut page #} {###################################} {% block main %}

CREATIONS SAINT LEMAN

{####################################} {# Loop for the Flash Message #} {# to add the product to the basket #} {####################################} {% for message in app.flashes('message') %}
{{ message }}
{% endfor %}
{#################################} {# loop retrieving each product #} {#################################} {% for product in products %}

{{product.getName()}}

picture of

{{product.getType()}}

{{product.getDescription()}}

{{product.getPrice()}} EURO

{#####################################} {# logical to see if user is logg in #} {# for see the right button #} {#####################################} {% if app.user %} Ajouter Au Panier {% elseif not app.user %} Connectez vous {% endif %}
{% endfor %}
{%endblock main%} {% block javascripts %} {% endblock %}