From 927741eb73b07f0be2cb214d6111e782e00092c6 Mon Sep 17 00:00:00 2001 From: Montana Date: Wed, 26 Sep 2018 11:21:29 -0400 Subject: [PATCH] Add a warning on edit project page --- templates/workspaces/projects/edit.html | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/templates/workspaces/projects/edit.html b/templates/workspaces/projects/edit.html index 11bc064e..1fa3bc20 100644 --- a/templates/workspaces/projects/edit.html +++ b/templates/workspaces/projects/edit.html @@ -5,6 +5,10 @@ {% block workspace_content %} +{% if g.dev %} + {{ Alert("In Progress", message="This page is a work in progress. You won't be able to edit environments on this project just yet.", level="warning") }} +{% endif %} + {% set modalName = "updateProjectConfirmation" %} {% include "fragments/edit_project_form.html" %}