This commit is contained in:
Joshua Laymon
2025-08-12 21:53:03 -05:00
parent 97da3bd6c5
commit 2fb9e7c39c
31 changed files with 554 additions and 419 deletions
+12
View File
@@ -0,0 +1,12 @@
{% extends "base.html" %}
{% block title %}Delete Entry - Illustrations DB{% endblock %}
{% block content %}
<div class="panel">
<h2>Delete Entry</h2>
<p>Are you sure you want to permanently delete <strong>{{ entry.talk_title|default:'(untitled)' }}</strong> (Code: {{ entry.entry_code }})?</p>
<form method="post">{% csrf_token %}
<a class="btn" href="/entry/{{ entry.id }}/">Cancel</a>
<button class="btn danger" type="submit">Delete</button>
</form>
</div>
{% endblock %}