16 lines
466 B
HTML
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 %}
|
|
|