summaryrefslogtreecommitdiff
path: root/templates/edit_project.html
diff options
context:
space:
mode:
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 %}