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
434 B
11 lines
434 B
{% extends 'base.html' %}
|
|
{% block sidebar %}{% endblock %}
|
|
{% 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 = "/admin/article/blog/all">Нет</a>
|
|
</div>
|
|
</form>
|
|
{% endblock %} |