blob: 0f48f8bb5c63c52931264d0e45a007c1f82004b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{% extends "base.html" %}
{% block content %}
<div class="greybox">
<h2>Confirm Delete</h2>
<hr />
You are about to delete the news item '{{news}}'.
<br /><br />
Are you sure?
<br /><br />
<form method="post" action=".">
<td> <input name="delete" type="submit" value=" Yes " />
</form>
</div>
{% endblock %}
|