Files
penracourses/templates/exam_confirm_delete.html
T
Ross 42528ec020 .
2021-09-12 11:40:56 +01:00

10 lines
230 B
HTML

{% extends 'base.html' %}
{% block content %}
<form method="post">{% csrf_token %}
<p>Are you sure you want to delete the exam "{{ object }}"?</p>
<input type="submit" value="Confirm">
</form>
{% endblock content %}