10 lines
230 B
HTML
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 %}
|
|
|