forked from ietf-tools/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfirm_delete.html
More file actions
26 lines (20 loc) · 757 Bytes
/
Copy pathconfirm_delete.html
File metadata and controls
26 lines (20 loc) · 757 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{% extends "base_site.html" %}
{% load static %}
{% block title %}Confirm Delete{% endblock %}
{% block content %}
<div class="module draft-container">
<h2>Confirm Delete</h2>
<h3>Are you sure?</h3>
<p>You are about to delete: {{ object }}</p>
{% if extra %}<p>{{ extra }}</p>{% endif %}
<form method="post">{% csrf_token %}
<div>
<p>
<input type="hidden" name="post" value="yes">
<button type="submit">Yes, I'm sure</button>
<a href="#" onclick="history.go(-1);return false;" class="button cancel-link">Take me back</a>
</p>
</div>
</form>
</div> <!-- module -->
{% endblock %}