We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ccb550 commit b908cafCopy full SHA for b908caf
1 file changed
ietf/secr/templates/confirm_delete.html
@@ -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