{# articles_panier : tableau de dictionnaires * dictionnaire : nom quantite prix article_id [stock] * #} {% extends "client/layout_client.html" %} {% block body %}
{% include('client/boutique/_panier.html') %}

Les filtres

Articles dont le nom est composé par :
{% include('client/boutique/_filtre.html') %}

Les articles

{% for article in articles %}

{{ article.nom }}
{{ article.prix }} €

{% if article.image is not none %} image  de {{ article.nom }} {% else %} image  de {{ article.nom }} {% endif %}
{# #} {% if article.stock is defined and article.stock != None %} {# #} {% if article.stock > 0 %}
{# #} {% endif %} {# #} {% endif %}
{% if article.liste_envie is defined %} {%if article.liste_envie== 1%} 💛 {% else %} 🤍 {% endif %} {% endif %}
{% endfor %}
{# {{ articles | pprint }}#} {% endblock %}