takahe/templates/admin/announcement_delete.html
Andrew Godwin 8f57aa5f37
UI/Domains Refactor
Redoes the UI to remove timelines, promote domains, and a lot of other things to support the refactor.
2023-05-03 22:42:37 -06:00

23 lines
590 B
HTML

{% extends "base_plain.html" %}
{% block title %}Delete Announcement - Admin{% endblock %}
{% block settings_content %}
<h1>Confirm Delete</h1>
<section>
<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>
</form>
</section>
{% endblock %}