summaryrefslogtreecommitdiff
path: root/templates/news/delete.html
blob: 3bcd6e56602e9dc0f57da1e1801e534c7fdc30d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{% extends "base.html" %}
{% block title %}Parabola - Delete News{% endblock %}

{% block content %}
<div id="news-delete-entry" class="box">

    <h2>News: Delete Entry Confirmation</h2>

    <p>You are about to delete the following news item:</p>

    <blockquote>
        <strong>{{news}}</strong>
    </blockquote>

    <p>Are you sure?</p>

    <form method="post">{% csrf_token %}
        <input title="Delete this article" id="delete" name="delete"
        type="submit" value="Delete" /></p>
    </form>

</div>
{% endblock %}