checkout/src/purchase/templates/purchase/basket_confirm_delete.html
2022-04-25 23:05:17 +02:00

12 lines
366 B
HTML

{% extends "common/base.html" %}
{% load i18n %}
{% block content %}
<h1>{{ object }}</h1>
<form method="post">
{% csrf_token %}
<p>{% blocktranslate %}Are you sure you want to delete "{{ basket }}"?{% endblocktranslate %}</p>
{{ form }}
<input class="btn btn-danger" type="submit" value="Confirm">
</form>
{% endblock %}