hausarbeit-hikmat_galan_neu.../mensaviewer/templates/comment/delete.html
Jannes Hikmat 4b07f346a0
All checks were successful
continuous-integration/drone/push Build is passing
templates, css & views nochmal überarbeitet
2023-01-08 21:16:45 +01:00

18 lines
369 B
HTML

{% extends 'base.html' %}
{% block title %}Delete Comment{% endblock %}
{% block header %}<h1>Delete comment by {{ object.author }}</h1>{% endblock %}
{% 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 %}