{% extends "lingo/interstitial_base.html" %} {% load i18n %} {% block title %}{% trans "Basket" %}{% endblock %} {% block content %}

{% trans "My basket" %}

{% csrf_token %}

{% trans "Are you sure you want to cancel this basket?" %}

{% for line in basket.lines %} {% if line.information_message %}

{{ line.information_message }}

{% endif %} {% endfor %}
{% trans 'Keep basket' %}
{% endblock %}