{% from "components/icon.html" import Icon %} {% from "components/text_input.html" import TextInput %} {% from "components/tooltip.html" import Tooltip %} {% 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) }} 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" )}} {{ TextInput(form.environment_name) }} {{ Icon('x') }} Cancel {% endblock %}