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

{% trans "My basket" %}

{% if basket.lines %} {% if not basket.is_expired %}
{% trans "Your basket expires in:" %}
{% else %}
{% trans "Your basket has expired." %}
{% endif %} {% trans "see invoice" %} {% if basket.status == 'open' and not basket.is_expired %} {% trans "Validate" %} {% endif %} {% trans "Cancel" %} {% endif %}
{% if basket.lines and not basket.is_expired %} {% endif %} {% endblock %}