{% 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.get_lines %} {% if line.information_message %} {{ line.information_message }} {% endif %} {% endfor %} {% trans "Confirm cancellation" %} {% trans 'Keep basket' %} {% endblock %}
{% trans "My basket" %}
{% trans "Are you sure you want to cancel this basket?" %}
{{ line.information_message }}