blob: c3824a26fcf3c3437164f619df71acf7ab1e14ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{% 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> <input name="delete" type="submit" value=" Yes " />
</form>
</div>
{% endblock %}
|