summaryrefslogtreecommitdiff
path: root/templates/edit_project.html
diff options
context:
space:
mode:
authorromangraef <roman.graef@gmail.com>2018-06-01 11:07:02 +0200
committerromangraef <roman.graef@gmail.com>2018-06-01 11:07:23 +0200
commita4717724853ce92888c8aa6c082a25428e00720b (patch)
tree3697459def6ec3e330bac2b5321908bd372c2daa /templates/edit_project.html
parent22480d21a0d647d7f1d86a5efb25368225fcb7dd (diff)
downloadmy-website-a4717724853ce92888c8aa6c082a25428e00720b.tar.gz
my-website-a4717724853ce92888c8aa6c082a25428e00720b.tar.bz2
my-website-a4717724853ce92888c8aa6c082a25428e00720b.zip
added editing abilities
Diffstat (limited to 'templates/edit_project.html')
-rw-r--r--templates/edit_project.html9
1 files changed, 9 insertions, 0 deletions
diff --git a/templates/edit_project.html b/templates/edit_project.html
new file mode 100644
index 0000000..fbbafdc
--- /dev/null
+++ b/templates/edit_project.html
@@ -0,0 +1,9 @@
+{% extends "base.html" %}
+{% block body %}
+ {% set id_disabled = True %}
+ {% include "project_fields.html" %}
+ <p>
+ <button onclick="save_changes()">Save changes</button>
+ </p>
+ <script src="{{ url_for('static', filename="edit.js") }}"></script>
+{% endblock %}