summaryrefslogtreecommitdiff
path: root/templates/delete.html
diff options
context:
space:
mode:
authorromangraef <roman.graef@gmail.com>2018-06-01 15:49:55 +0200
committerromangraef <roman.graef@gmail.com>2018-06-01 15:49:55 +0200
commit7bed1685b66f126b7130e43304ad8f53f69a3aff (patch)
treef7a12a3f722bc48d0e03f08aa574b4966ba960f4 /templates/delete.html
parenta4717724853ce92888c8aa6c082a25428e00720b (diff)
downloadmy-website-7bed1685b66f126b7130e43304ad8f53f69a3aff.tar.gz
my-website-7bed1685b66f126b7130e43304ad8f53f69a3aff.tar.bz2
my-website-7bed1685b66f126b7130e43304ad8f53f69a3aff.zip
Enhanced editing and a bnit of more admin links.
Diffstat (limited to 'templates/delete.html')
-rw-r--r--templates/delete.html12
1 files changed, 12 insertions, 0 deletions
diff --git a/templates/delete.html b/templates/delete.html
new file mode 100644
index 0000000..2641260
--- /dev/null
+++ b/templates/delete.html
@@ -0,0 +1,12 @@
+{% extends"base.html" %}
+{% block body %}
+ <p>Do you really want to delete the project <b>{{ project.name }}</b></p>
+ <form action="." method="post">
+ <p>
+ <a href="{{ url_for('projects', project_name=project.id) }}">
+ No
+ </a>
+ <input style="color: red;" type="submit" value="Yes">
+ </p>
+ </form>
+{% endblock %} \ No newline at end of file