Skip to content

Commit b908caf

Browse files
committed
Add missing confirm_delete.html. Commit ready for merge.
- Legacy-Id: 13627
1 parent 3ccb550 commit b908caf

1 file changed

Lines changed: 26 additions & 0 deletions

File tree

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{% extends "base_site.html" %}
2+
{% load staticfiles %}
3+
4+
{% block title %}Confirm Delete{% endblock %}
5+
6+
7+
{% block content %}
8+
9+
<div class="module draft-container">
10+
<h2>Confirm Delete</h2>
11+
<h3>Are you sure?</h3>
12+
<p>You are about to delete: {{ object }}</p>
13+
{% if extra %}<p>{{ extra }}</p>{% endif %}
14+
15+
<form action="" method="post">{% csrf_token %}
16+
<div>
17+
<p>
18+
<input type="hidden" name="post" value="yes">
19+
<input type="submit" value="Yes, I'm sure">
20+
<a href="#" onclick="history.go(-1);return false;" class="button cancel-link">Take me back</a>
21+
</p>
22+
</div>
23+
</form>
24+
</div> <!-- module -->
25+
26+
{% endblock %}

0 commit comments

Comments
 (0)