+213 00 00 00 00
contact@antallis.fr
{% for local in locales %} {% if local == app.request.locale %}
{% if local == 'fr' %} Français {% else %} العربية {% endif %}
{% endif %} {% endfor %}
{% for local in locales %}
{% if local == 'fr' %} Français {% else %} العربية {% endif %}
{% endfor %}
{% if user is defined and user != null %}
{{ user.nom }} {{ user.prenom}}
{% else %}
{% trans %}Mon compte{% endtrans %}
{% trans %}Se connecter{% endtrans %}
{% trans %}S'inscrire{% endtrans %}
{% endif %}
{% if (user != null and user.roles[0] == "ROLE_ADMIN") %}
{% trans %}Admin{% endtrans %}
{% endif %}
{% trans %}Accueil{% endtrans %}
{% trans %}Boutique{% endtrans %}
{% trans %}Catégories{% endtrans %}
{% for items in catProducts %}
{{ items["cat"].label|trans }}
{% for subs in items["sub"] %}
{{ subs.label }}
{% endfor %}
{% endfor %}
{% trans %}Marques{% endtrans %}
{% for brand in brands %}
{{ brand.label }}
{% endfor %}
{#
Contact
#}
{#
#} {#
#} {#
#}
{% if cart is not empty and cart.items is not empty %}
{{ cart.items|length }}
{% endif %} {% if cart is not empty and cart.items is not empty %}
{% for item in cart.items %}
{{ item.productId.label }}
{{ item.qte}} x
{{ item.productId.discountPrice != null ? item.productId.discountPrice|number_format(0, '', ' ') : item.productId.price|number_format(0, '', ' ') }}
{% trans %}DZD{% endtrans %}
{% endfor %}
{% trans %} Frais de livraison{% endtrans %}
{% trans %}Offert{% endtrans %}
{% trans %}tva (20%){% endtrans %}
{{ (cart.price * 0.2)|number_format(0, '', ' ') }}
{% trans %}DZD{% endtrans %}
{% trans %}Total TTC{% endtrans %}
{{ (cart.price + (cart.price * 0.2))|number_format(0, '', ' ')}}
{% trans %}DZD{% endtrans %}
{% trans %}Valider le panier{% endtrans %}
{% else %}
{% trans %}Votre panier est vide{% endtrans %}
{% trans %}Voir la boutique{% endtrans %}
{% endif %}
{# #} {#
#} {#
#} {#
#} {#
#} {#
#} {#
#} {#
#} {#
#} {#
#} {#
#} {#
Fermer
#} {#
#} {#
#} {# #}
{% block body %}{% endblock %}