From c5bc10d8c322089b45e1a105381dd79419017b8f Mon Sep 17 00:00:00 2001 From: leigh-mil Date: Mon, 15 Oct 2018 16:43:45 -0400 Subject: [PATCH] Refactory Edit Project Form to simplify and use Edit Project fragment --- templates/workspaces/projects/edit.html | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/templates/workspaces/projects/edit.html b/templates/workspaces/projects/edit.html index 11bc064e..aecc2254 100644 --- a/templates/workspaces/projects/edit.html +++ b/templates/workspaces/projects/edit.html @@ -2,10 +2,18 @@ {% from "components/alert.html" import Alert %} {% from "components/icon.html" import Icon %} +{% from "components/modal.html" import Modal %} +{% from "components/text_input.html" import TextInput %} {% block workspace_content %} -{% set modalName = "updateProjectConfirmation" %} -{% include "fragments/edit_project_form.html" %} +
+ + {% include "fragments/edit_project_form.html" %} + +
+ +
+
{% endblock %}