{% extends 'base.html.twig' %} {% block title %}Portfolio | Shop{% endblock title %} {% block links %} {% endblock links %} {% block body %}

Cart\(x)


{% if items | length == 0 %}

The cart is currently empty !

{% else %}
{#FIRST ITEM#} {% for item in items %}

{{ item.product.title }}

{{ item.product.price * item.quantity }} €

{% endfor %}
{% endif %} {#TOTAL#}
{#LIGNE DU PRIX TOTAL#}

Total

{{ total }}€

{# BOUTON PAYER #}
{% for article in articles %}
{% if article.category.id == '1' %}

30,00€

{% if app.user %} {% else %} {% endif %}
{% endfor %}
{% block scripts %} {% if app.user %} {% endif %} {% endblock scripts %} {% endblock body %}