{% extends "core/base.jinja" %} {% block title -%} {% trans %}Eboutic{% endtrans %} {%- endblock %} {% block description -%} {% trans %}The online shop of the association.{% endtrans %} {%- endblock %} {% block metatags %} {% endblock %} {% block additional_js %} {# This script contains the code to perform requests to manipulate the user basket without having to reload the page #} {% endblock %} {% block additional_css %} {% endblock %} {% block content %}

{% trans %}Eboutic{% endtrans %}

Panier

{% csrf_token %}
{{ form.management_form }}
{% if form.non_form_errors() or form.errors %}
{% for error in form.non_form_errors() + form.errors %}

{{ error }}

{% endfor %}
{% endif %}
    {# Starting money #}
  • {% trans %}Current account amount: {% endtrans %} {{ "%0.2f"|format(customer_amount) }} €
  • {# Total price #}
  • {% trans %}Basket amount: {% endtrans %}
{% if not request.user.date_of_birth %}
{% trans trimmed %} You have not filled in your date of birth. As a result, you may not have access to all the products in the online shop. To fill in your date of birth, you can go to {% endtrans %} {% trans %}this page{% endtrans %}
{% endif %} {% for prices in categories %} {% set category = prices[0].product.product_type %}

{{ category.name }}

{% if category.comment %}

{{ category.comment }}

{% endif %}
{% for price in prices %} {% endfor %}
{% else %}

{% trans %}There are no items available for sale{% endtrans %}

{% endfor %}
{% endblock %}