From 7145c36ed1143a2b3aa1baaae53c92747a3aeed2 Mon Sep 17 00:00:00 2001 From: richard-dds Date: Fri, 24 Aug 2018 16:01:23 -0400 Subject: [PATCH] Put error message in alert name --- templates/workspace_project_new.html | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/templates/workspace_project_new.html b/templates/workspace_project_new.html index d06b8270..71daf9cc 100644 --- a/templates/workspace_project_new.html +++ b/templates/workspace_project_new.html @@ -52,11 +52,9 @@ {% if form.environment_names.errors %} - {% call Alert("Missing Environments", level="error") %} - {% for error in form.environment_names.errors %} -

{{ error }}

- {% endfor %} - {% endcall %} + {% for error in form.environment_names.errors %} + {{ Alert(error, level="error") }} + {% endfor %} {% endif %}