summaryrefslogtreecommitdiffstats
path: root/templates/admin/hashtag_delete.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/admin/hashtag_delete.html')
-rw-r--r--templates/admin/hashtag_delete.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/templates/admin/hashtag_delete.html b/templates/admin/hashtag_delete.html
new file mode 100644
index 0000000..9aca4e7
--- /dev/null
+++ b/templates/admin/hashtag_delete.html
@@ -0,0 +1,17 @@
+{% extends "settings/base.html" %}
+
+{% block title %}Delete <i class="fa-solid fa-hashtag"></i>{{ hashtag.hashtag }} - Admin{% endblock %}
+
+{% block content %}
+ <form action="." method="POST">
+ {% csrf_token %}
+
+ <h1>Deleting <i class="fa-solid fa-hashtag"></i>{{ hashtag.hashtag }}</h1>
+
+ <p>Please confirm deletion of this hashtag.</p>
+ <div class="buttons">
+ <a class="button" href="{{ hashtag.urls.edit }}">Cancel</a>
+ <button class="delete">Confirm Deletion</button>
+ </div>
+
+{% endblock %}