summaryrefslogtreecommitdiffstats
path: root/templates/news/delete.html
blob: 7ac5e250874027270593f1bc2b67457e05888253 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{% extends "base.html" %}

{% block content %}
	<div class="greybox">
		<h2>Confirm Delete</h2>
		<hr />
		<form method="post" action=".">
		<table>
			<tr>
				<td>Are You Sure?</td>
				<td>&nbsp; &nbsp; <input name="delete" type="submit" value=" Yes " /></td>
			</tr>
		</table>
		</form>
	</div>
{% endblock %}