2023-01-13 22:54:21 +00:00
|
|
|
{% extends "base_plain.html" %}
|
|
|
|
|
|
|
|
{% block title %}Delete Announcement - Admin{% endblock %}
|
|
|
|
|
2023-05-04 04:42:37 +00:00
|
|
|
{% block settings_content %}
|
2023-01-13 22:54:21 +00:00
|
|
|
<h1>Confirm Delete</h1>
|
2023-01-14 17:32:48 +00:00
|
|
|
<section>
|
2023-01-13 22:54:21 +00:00
|
|
|
<form action="." method="POST">
|
|
|
|
{% csrf_token %}
|
|
|
|
|
|
|
|
<p>Do you want to delete this announcement?</p>
|
|
|
|
|
|
|
|
<blockquote>{{ announcement.html }}</blockquote>
|
|
|
|
|
|
|
|
<div class="buttons">
|
|
|
|
<a class="button" href="javascript:history.back()">Cancel</a>
|
|
|
|
<button class="delete">Delete</button>
|
|
|
|
</div>
|
2023-01-14 17:32:48 +00:00
|
|
|
</form>
|
|
|
|
</section>
|
2023-01-13 22:54:21 +00:00
|
|
|
|
|
|
|
{% endblock %}
|