mirror of
https://github.com/HS-Flensburg-Klein/hausarbeit-hikmat_galan_neumann_stark_becker
synced 2025-02-23 09:53:32 +00:00
18 lines
367 B
HTML
18 lines
367 B
HTML
{% extends 'base.html' %}
|
|
|
|
|
|
{% block title %}Delete News{% endblock %}
|
|
|
|
{% block header %}<h1>Delete news article {{ object.title }}</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 %}
|