Files
penracourses/templates/exam_confirm_delete.html
T
Ross 48109e5bf7 .
2021-10-02 15:42:31 +01:00

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