diff options
author | Dusty Phillips <buchuki@gmail.com> | 2008-06-28 04:13:40 +0200 |
---|---|---|
committer | Dusty Phillips <buchuki@gmail.com> | 2008-06-28 04:13:40 +0200 |
commit | 7df08f2ce3809977c98537db03745a8e423f5f07 (patch) | |
tree | 7449cc64312c7477e6a4bdf10668d93aaba4e56d /templates/todolists/todolist_confirm_delete.html | |
parent | e55a937802e61d6aece9e759bf16508575361df2 (diff) | |
download | archweb-7df08f2ce3809977c98537db03745a8e423f5f07.tar.gz archweb-7df08f2ce3809977c98537db03745a8e423f5f07.tar.xz |
add delete functionality to todo lists
Diffstat (limited to 'templates/todolists/todolist_confirm_delete.html')
-rw-r--r-- | templates/todolists/todolist_confirm_delete.html | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/templates/todolists/todolist_confirm_delete.html b/templates/todolists/todolist_confirm_delete.html new file mode 100644 index 0000000..bfa3dba --- /dev/null +++ b/templates/todolists/todolist_confirm_delete.html @@ -0,0 +1,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 %} |