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.
18 lines
555 B
18 lines
555 B
{% extends "base.html" %}
|
|
|
|
{% block title %}Удалить {{ padeji.vinit }}{% endblock %}
|
|
|
|
{% block content %}
|
|
<h2 style="color:red">Вы уверены, что хотите удалить {{ padeji.vinit }}?</h2>
|
|
|
|
<p style="font-weight:bold">
|
|
{{ obj }}
|
|
</p>
|
|
|
|
<form action="" method="post">
|
|
{% csrf_token %}
|
|
<input type="hidden" name="post" value="yes" />
|
|
<input type="submit" value="Да, я уверен" />
|
|
<input type="submit" name="_cancel" value="Отмена" />
|
|
</form>
|
|
{% endblock %}
|
|
|