diff options
author | Armin Ronacher <armin.ronacher@active-4.com> | 2011-12-05 22:38:43 -0500 |
---|---|---|
committer | Armin Ronacher <armin.ronacher@active-4.com> | 2011-12-05 22:38:43 -0500 |
commit | 803d20968fea1e25a298aa3b4e670d5670995e0d (patch) | |
tree | 2f90c6b8403e85576d0109a672dccb46598ce115 /templates/delete_paste.html | |
download | stackbin-803d20968fea1e25a298aa3b4e670d5670995e0d.tar.gz stackbin-803d20968fea1e25a298aa3b4e670d5670995e0d.tar.bz2 stackbin-803d20968fea1e25a298aa3b4e670d5670995e0d.zip |
Added as example app
Diffstat (limited to 'templates/delete_paste.html')
-rw-r--r-- | templates/delete_paste.html | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/templates/delete_paste.html b/templates/delete_paste.html new file mode 100644 index 0000000..e258dae --- /dev/null +++ b/templates/delete_paste.html @@ -0,0 +1,11 @@ +{% extends "layout.html" %} +{% block title %}Delete Paste #{{ paste.id }}{% endblock %} +{% block body %} + <h2>Delete Paste #{{ paste.id }}</h2> + <form action="" method=post> + <p>Are you sure you want to delete the paste? You cannot undo this. + <p> + <input type=submit name=yes value=Yes> + <input type=submit name=no value=No> + </form> +{% endblock %} |