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