evorepo/templates/news/delete.html
Dan McGee 8777ccf001 Fix up HTML titles on a lot of pages
We didn't include them on many pages, or the ones we did weren't always
useful. Also try to keep the boilerplate to a minimum so you can see the
important bits in the title. 'Arch Linux - ' comes first in all titles, and
from there it can be filled in with something useful.

Signed-off-by: Dan McGee <dan@archlinux.org>
2010-03-01 21:43:52 -06:00

17 lines
424 B
HTML

{% extends "base.html" %}
{% block title %}Arch Linux - Delete News{% endblock %}
{% 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>&nbsp; &nbsp; <input name="delete" type="submit" value=" Yes " />
</form>
</div>
{% endblock %}