You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
432 B
11 lines
432 B
{% extends 'base.html' %}
|
|
|
|
{% block body %}
|
|
<form action="." method="post">{% csrf_token %}
|
|
<div class="controls">
|
|
<p>Вы точно хотите удалить заказчика "{{ object }}"?</p>
|
|
<input class="btn btn-large btn-danger delete" type="submit" value="Да" />
|
|
<a class="btn btn-large btn-primary" href = {% url 'expobanner-customer_list' %}>Нет</a>
|
|
</div>
|
|
</form>
|
|
{% endblock %}
|
|
|