diff options
author | Thayer Williams <thayerw@gmail.com> | 2010-03-16 19:22:54 +0100 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2010-05-17 22:55:38 +0200 |
commit | c1711f002ac343c414175bf9005e96e053ba75da (patch) | |
tree | 749aa349e97f4c5fb7fc5059016d47a31e4dcf5a /templates/todolists/todolist_confirm_delete.html | |
parent | 5813ec18197dc76c99f85f8fc1d1c41ed7f396e3 (diff) | |
download | archweb-c1711f002ac343c414175bf9005e96e053ba75da.tar.gz archweb-c1711f002ac343c414175bf9005e96e053ba75da.tar.xz |
Redesigned todo list pages
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'templates/todolists/todolist_confirm_delete.html')
-rw-r--r-- | templates/todolists/todolist_confirm_delete.html | 37 |
1 files changed, 17 insertions, 20 deletions
diff --git a/templates/todolists/todolist_confirm_delete.html b/templates/todolists/todolist_confirm_delete.html index c0742d2..c1e8783 100644 --- a/templates/todolists/todolist_confirm_delete.html +++ b/templates/todolists/todolist_confirm_delete.html @@ -1,25 +1,22 @@ {% extends "base.html" %} -{% block title %}Arch Linux - Delete Todo List{% endblock %} +{% block title %}Arch Linux - Delete Todo List: {{object.name}}{% endblock %} {% 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 id="dev-todo-delete" class="box"> - - </div> + <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 %} |