Files
penracourses/templates/confirm_delete.html
T
Ross 326c155c24 .
2021-02-17 21:49:25 +00:00

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 %}