{% from "components/icon.html" import Icon %} {% 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 %}
{{ form.csrf_token }}

Add a new project

{{ Tooltip( "AT-AT allows you to organize your workspace into multiple projects, each of which may have environments.", title="learn more" )}}
{{ TextInput(form.name) }} {{ TextInput(form.description, paragraph=True) }}
{% if form.environment_names.errors %} {{ Alert("Missing Environments", message="Provide at least one environment name.", level="error") }} {% endif %}

Project Environments

{{ Tooltip( "Each environment created within a project is an enclave of cloud resources that is logically separated from each other for increased security.", title="learn more" )}}
{% endblock %}