lingo/lingo/basket/templates/lingo/basket/basket_cancel.html

24 lines
674 B
HTML

{% extends "lingo/interstitial_base.html" %}
{% load i18n %}
{% block title %}{% trans "Basket" %}{% endblock %}
{% block content %}
<div>
<p>
{% trans "My basket" %}
</p>
<form method="post">
{% csrf_token %}
<p>{% trans "Are you sure you want to cancel this basket?" %}</p>
{% for message in basket.cancel_information_messages %}
<p>{{ message }}</p>
{% endfor %}
<div class="buttons">
<button class="submit-button">{% trans "Confirm cancellation" %}</button>
<a class="cancel" href="{% url 'lingo-basket-detail' %}">{% trans 'Keep basket' %}</a>
</div>
</form>
</div>
{% endblock %}