11 lines
311 B
HTML
11 lines
311 B
HTML
{% extends 'library/base.html' %}
|
|
|
|
{% block content %}
|
|
<h1>Löschen</h1>
|
|
<p>Soll das Quiz "{{ object.name }}" wirklich gelöscht werden?</p>
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
<button type="submit">Löschen</button>
|
|
<a href="{% url 'library:overview_quiz' %}">Abbrechen</a>
|
|
</form>
|
|
{% endblock %} |