summaryrefslogtreecommitdiffstats
path: root/templates/activities/post_delete.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/activities/post_delete.html')
-rw-r--r--templates/activities/post_delete.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/templates/activities/post_delete.html b/templates/activities/post_delete.html
new file mode 100644
index 0000000..1566399
--- /dev/null
+++ b/templates/activities/post_delete.html
@@ -0,0 +1,14 @@
+{% extends "base.html" %}
+
+{% block title %}Delete Post{% endblock %}
+
+{% block content %}
+ <h1>Delete this post?</h1>
+ <form action="." method="POST">
+ {% csrf_token %}
+ <a class="button" onclick="history.back()">Cancel</a>
+ <button class="delete">Delete</button>
+ </form>
+
+ {% include "activities/_post.html" %}
+{% endblock %}