Add missing confirm_delete.html. Commit ready for merge.
- Legacy-Id: 13627
This commit is contained in:
parent
3ccb550888
commit
b908caf95c
26
ietf/secr/templates/confirm_delete.html
Normal file
26
ietf/secr/templates/confirm_delete.html
Normal file
|
@ -0,0 +1,26 @@
|
|||
{% extends "base_site.html" %}
|
||||
{% load staticfiles %}
|
||||
|
||||
{% 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 action="" method="post">{% csrf_token %}
|
||||
<div>
|
||||
<p>
|
||||
<input type="hidden" name="post" value="yes">
|
||||
<input type="submit" value="Yes, I'm sure">
|
||||
<a href="#" onclick="history.go(-1);return false;" class="button cancel-link">Take me back</a>
|
||||
</p>
|
||||
</div>
|
||||
</form>
|
||||
</div> <!-- module -->
|
||||
|
||||
{% endblock %}
|
Loading…
Reference in a new issue