combo/combo/apps/lingo/templates/lingo/combo/cancel-item.html

21 lines
566 B
HTML

{% load i18n %}<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
</head>
<body>
<div>
<form method="POST" action="{% url 'lingo-cancel-item' pk=object.id %}">
{% csrf_token %}
{% blocktrans with subject=object.subject %}
Are you really sure you want to remove "{{subject}}"?
{% endblocktrans %}
<div class="buttons">
<button>{% trans 'Remove' %}</button>
<a class="cancel" href="{{ basket_url }}">{% trans 'Cancel' %}</a>
</div>
</form>
</div>
</body>
</html>