Files
penracourses/templates/confirm_delete.html
Ross 96210fffeb .
2021-12-06 13:20:41 +00:00

15 lines
331 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">
<a href="{{ object.get_absolute_url }}" class="btn btn-default">Cancel</a>
</form>
{% endblock content %}