mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-14 11:21:13 +00:00
8f57aa5f37
Redoes the UI to remove timelines, promote domains, and a lot of other things to support the refactor.
22 lines
590 B
HTML
22 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 %}
|