summaryrefslogtreecommitdiff
path: root/templates/edit_project.html
blob: fbbafdcb4b8d4d17e1ed81bdb0b77b0b4e216ade (plain)
1
2
3
4
5
6
7
8
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 %}