summaryrefslogtreecommitdiffstats
path: root/templates/todolists/todolist_confirm_delete.html
blob: c1e87834f2b5a2a2e8777d8bdcfd27f9fc45890c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{% extends "base.html" %}
{% block title %}Arch Linux - Delete Todo List: {{object.name}}{% endblock %}

{% block content %}
<div id="dev-todo-delete" class="box">

    <h2>Delete Todo List: {{object.name}}</h2>

    <p>You are about to delete the following todo list:</p>

    <blockquote>
        <p><strong>{{object.name}}:</strong> {{object.description}}</p>
    </blockquote>

    <p>Are you sure?</p>

    <form id="delete-todo-form" method="post" action=".">
        <p><input type="submit" value="Delete" /></p>
    </form>

</div>
{% endblock %}