From be47b2dea096ded9c3dee015e14b7f291d2bec46 Mon Sep 17 00:00:00 2001 From: richard-dds Date: Tue, 21 Aug 2018 15:20:58 -0400 Subject: [PATCH] Add some badly-placed tooltips to new project form --- templates/workspace_project_new.html | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/templates/workspace_project_new.html b/templates/workspace_project_new.html index c01c8d4e..d9e797f2 100644 --- a/templates/workspace_project_new.html +++ b/templates/workspace_project_new.html @@ -1,5 +1,6 @@ {% from "components/icon.html" import Icon %} {% from "components/text_input.html" import TextInput %} +{% from "components/tooltip.html" import Tooltip %} {% extends "base_workspace.html" %} @@ -10,8 +11,13 @@

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) }} @@ -22,6 +28,10 @@

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" + )}}