{% extends "core/base.jinja" %} {% block title %} {% trans %}Eboutic{% endtrans %} {% endblock %} {% block jquery_css %} {# Remove jquery css #} {% 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 %}

{% if messages %} {% for message in messages %}
{{ message }}
{% endfor %} {% endif %}

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 %}

{% trans %}Eurockéennes 2025 partnership{% endtrans %}

{% if user.is_subscribed %}

{% trans trimmed %} Our partner uses Weezevent to sell tickets. Weezevent may collect user info according to its own privacy policy. By clicking the accept button you consent to their terms of services. {% endtrans %}

{% trans %}Privacy policy{% endtrans %}
{% else %}

{%- trans trimmed %} You must be subscribed to benefit from the partnership with the Eurockéennes. {% endtrans -%}

{%- trans trimmed %} This partnership offers a discount of up to 33% on tickets for Friday, Saturday and Sunday, as well as the 3-day package from Friday to Sunday. {% endtrans -%}

{% endif %}
{% for priority_groups in products|groupby('order') %} {% for category, items in priority_groups.list|groupby('category') %} {% if items|count > 0 %}
{# I would have wholeheartedly directly used the header element instead but it has already been made messy in core/style.scss #}

{{ category }}

{% if items[0].category_comment %}

{{ items[0].category_comment }}

{% endif %}
{% for p in items %} {% endfor %}
{% endif %} {% endfor %} {% else %}

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

{% endfor %}
{% endblock %}