14 lines
252 B
HTML
14 lines
252 B
HTML
{% extends 'base.html' %}
|
|
|
|
|
|
{% block content %}
|
|
|
|
<h2>Deleting stuff</h2>
|
|
|
|
<form method="post">{% csrf_token %}
|
|
<p>Are you sure you want to delete "{{ object }}"?</p>
|
|
<input type="submit" value="Confirm">
|
|
</form>
|
|
|
|
{% endblock content %}
|