{% from "components/icon.html" import Icon %} {% from "components/modal.html" import Modal %} {% from "components/text_input.html" import TextInput %} {% from "components/tooltip.html" import Tooltip %} {% from "components/alert.html" import Alert %} {% extends "base_workspace.html" %} {% 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 %}
{% call Modal(name=modalName, dismissable=False) %}

Create project !{ name }

When you click Create Project, the environments !{environment.name} will be created as individual cloud resource groups under !{ name } project.

{% endcall %} {{ form.csrf_token }}

Add a new project

AT-AT allows you to organize your workspace into multiple projects, each of which may have environments.

{{ TextInput(form.name) }} {{ TextInput(form.description, paragraph=True) }}
{% if form.environment_names.errors %} {% for error in form.environment_names.errors %} {{ Alert(error, level="error") }} {% endfor %} {% endif %}

Project Environments

Each environment created within a project is an enclave of cloud resources that is logically separated from each other for increased security.

{% endblock %}