Files
penracourses/templates/exam_confirm_delete.html
T
2024-03-11 11:48:37 +00:00

16 lines
466 B
HTML

{% extends object.get_base_template %}
{% block navigation %}
{{ block.super }}
{% include object.get_link_headers %}
{% endblock navigation %}
{% block content %}
<h2>Delete Exam: {{ object }}</h2>
<form method="post">{% csrf_token %}
<p>Are you sure you want to delete the exam "{{ object }}"?</p>
<input type="submit" value="Confirm">
<a href="{{ object.get_absolute_url }}" class="btn btn-default">Cancel</a>
</form>
{% endblock content %}