Files
atst/templates/workspaces/projects/new.html
2018-09-06 14:58:34 -04:00

18 lines
408 B
HTML

{% extends "workspaces/base.html" %}
{% block workspace_content %}
{% set modalName = "newProjectConfirmation" %}
{% if request.args.get("newWorkspace") %}
{{ Alert('Workspace created!',
message="\
<p>You are now ready to create projects and environments within the JEDI Cloud.</p>
",
level='success'
) }}
{% endif %}
{% include "fragments/edit_project_form.html" %}
{% endblock %}