Add some badly-placed tooltips to new project form

This commit is contained in:
richard-dds 2018-08-21 15:20:58 -04:00
parent 020e1b9cb0
commit be47b2dea0

View File

@ -1,5 +1,6 @@
{% from "components/icon.html" import Icon %} {% from "components/icon.html" import Icon %}
{% from "components/text_input.html" import TextInput %} {% from "components/text_input.html" import TextInput %}
{% from "components/tooltip.html" import Tooltip %}
{% extends "base_workspace.html" %} {% extends "base_workspace.html" %}
@ -10,8 +11,13 @@
<div class="panel"> <div class="panel">
<div class="panel__heading"> <div class="panel__heading">
<h1>Add a new project</h1> <h1>Add a new project</h1>
{{ Tooltip(
"AT-AT allows you to organize your workspace into multiple projects, each of which may have environments.",
title="learn more"
)}}
</div> </div>
<div class="panel__content"> <div class="panel__content">
{{ TextInput(form.name) }} {{ TextInput(form.name) }}
{{ TextInput(form.description, paragraph=True) }} {{ TextInput(form.description, paragraph=True) }}
@ -22,6 +28,10 @@
<div class="block-list project-list-item"> <div class="block-list project-list-item">
<header class="block-list__header"> <header class="block-list__header">
<h3 class="block-list__title">Project Environments</h3> <h3 class="block-list__title">Project Environments</h3>
{{ 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"
)}}
</header> </header>
<ul> <ul>