summaryrefslogtreecommitdiffstats
path: root/templates/todolists/todolist_confirm_delete.html
blob: bfa3dbabdad8963e4b5538a18db8deb8ef6b3da1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{% extends "base.html" %}

{% block content %}
	<div class="greybox">
		<h2 class="title">Confirm Delete</h2>
        <p>
        Are you sure you want to delete this todo list?
        </p>
        <div class="box">
            <h3>{{object.name}}</h3>
            <p>
            {{object.description}}
            </p>
        </div>
        <br />
        <form method="POST">
            <input type="submit" value="Yes" />
            <button type="reset" value="No"
                onclick="document.location='/todos/{{object.id}}/';">No</button>
        </form>

        
	</div>
{% endblock %}