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.
15 lines
402 B
15 lines
402 B
{% extends 'base.html' %}
|
|
|
|
{% block body %}
|
|
|
|
<form action="" method="post"> {% csrf_token %}
|
|
|
|
<div class="alert alert-danger">
|
|
<p>Вы действительно хотите удалить <b>{{ object }}</b>?</p>
|
|
</div>
|
|
<input type="submit" class="btn-primary" value="Да">
|
|
<a class="btn" href="/admin/import/log/">Нет</a>
|
|
</form>
|
|
|
|
|
|
{% endblock %} |