13 lines
507 B
HTML
13 lines
507 B
HTML
{% 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 %}
|