We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9de0fc5 commit 5385aa3Copy full SHA for 5385aa3
1 file changed
ietf/secr/templates/confirm_cancel.html
@@ -0,0 +1,26 @@
1
+{% extends "base_site.html" %}
2
+{% load staticfiles %}
3
+
4
+{% block title %}Confirm Cancel{% endblock %}
5
6
7
+{% block content %}
8
9
+<div class="module draft-container">
10
+ <h2>Confirm Cancel</h2>
11
+ <h3>Are you sure?</h3>
12
+ <p>You are about to cancel: {{ 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