diff --git a/atst/routes/requests/financial_verification.py b/atst/routes/requests/financial_verification.py index 8c4e5666..29f5ce39 100644 --- a/atst/routes/requests/financial_verification.py +++ b/atst/routes/requests/financial_verification.py @@ -45,7 +45,7 @@ def update_financial_verification(request_id): new_workspace = Requests.approve_and_create_workspace(updated_request) return redirect( url_for( - "workspaces.workspace_projects", + "workspaces.new_project", workspace_id=new_workspace.id, newWorkspace=True, ) diff --git a/templates/workspace_project_new.html b/templates/workspace_project_new.html index b32178c7..dc19b669 100644 --- a/templates/workspace_project_new.html +++ b/templates/workspace_project_new.html @@ -9,6 +9,14 @@ {% block workspace_content %} {% set modalName = "newProjectConfirmation" %} +{% if request.args.get("newWorkspace") %} + {{ Alert('Workspace created!', + message="\ +
You are now ready to create projects and environments within the JEDI Cloud.
+ ", + level='success' + ) }} +{% endif %}