mirror of
https://github.com/HS-Flensburg-Klein/hausarbeit-hikmat_galan_neumann_stark_becker
synced 2025-02-23 11:43:31 +00:00
13 lines
241 B
HTML
13 lines
241 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
|
|
<form class="model-form" method="post">
|
|
{% csrf_token %}
|
|
<p>Are you sure you want to delete "{{ object }}"?</p>
|
|
{{ form }}
|
|
<input type="submit" value="Confirm">
|
|
</form>
|
|
|
|
{% endblock %}
|