evorepo/templates/news/delete.html
eliott 39a548fd26 Initial import for public release...
Special Note
  Prior to git import, approx 90% of the code was done by Judd Vinet. Thanks Judd!
2007-11-03 03:45:10 -04:00

17 lines
316 B
HTML

{% 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 %}