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

{% trans "My basket" %}

{% with lines=basket.get_lines %} {% if lines %} {% trans "see invoice" %} {% if basket.status == 'open' %} {% trans "Validate" %} {% endif %} {% trans "Cancel" %} {% endif %} {% endwith %}
{% endblock %}