Add moaaar tooltips

This commit is contained in:
luis cielak 2018-08-10 13:38:14 -04:00
parent a3489d50e4
commit 1bc44b8882
3 changed files with 15 additions and 3 deletions

View File

@ -112,6 +112,12 @@ class RequestForm(ValidatedForm):
) )
average_daily_traffic = IntegerField( average_daily_traffic = IntegerField(
"Average Daily Traffic (Number of Requests)",
description="What is the average daily traffic you expect the systems under this cloud contract to use?"
)
average_daily_traffic_gb = IntegerField(
"Average Daily Traffic (GB)",
description="What is the average daily traffic you expect the systems under this cloud contract to use?" description="What is the average daily traffic you expect the systems under this cloud contract to use?"
) )

View File

@ -37,11 +37,12 @@
{{ OptionsInput(f.cloud_native, tooltip="Cloud native is architecting and designing your application to use all the benefits of the commercial cloud. Specifically, designing applications so that they are decoupled from a physical resource.") }} {{ OptionsInput(f.cloud_native, tooltip="Cloud native is architecting and designing your application to use all the benefits of the commercial cloud. Specifically, designing applications so that they are decoupled from a physical resource.") }}
<h2>Financial Usage</h2> <h2>Financial Usage</h2>
{{ TextInput(f.estimated_monthly_spend) }} {{ TextInput(f.estimated_monthly_spend, tooltip="Refer to financial verification step help docs") }}
<p>So this means you are spending approximately <b>$X</b> annually</p> <p>So this means you are spending approximately <b>$X</b> annually</p>
{{ TextInput(f.dollar_value) }} {{ TextInput(f.dollar_value) }}
{{ TextInput(f.number_user_sessions) }} {{ TextInput(f.number_user_sessions) }}
{{ TextInput(f.average_daily_traffic) }} {{ TextInput(f.average_daily_traffic, tooltip="Requests are the client-to-server network traffic that is being transferred to your systems") }}
{{ TextInput(f.average_daily_traffic_gb, tooltip="GB uploaded is the gigabyte amount of data traffic that is being transferred to your systems") }}
{{ TextInput(f.start_date) }} {{ TextInput(f.start_date) }}

View File

@ -98,10 +98,15 @@
</div> </div>
<div> <div>
<dt>Average Daily Traffic</dt> <dt>Average Daily Traffic (Number of Requests)</dt>
<dd>{{data['details_of_use']['average_daily_traffic']}}</dd> <dd>{{data['details_of_use']['average_daily_traffic']}}</dd>
</div> </div>
<div>
<dt>Average Daily Traffic (GB)</dt>
<dd>{{data['details_of_use']['average_daily_traffic_gb']}}</dd>
</div>
<div> <div>
<dt>Start Date</dt> <dt>Start Date</dt>
<dd>{{data['details_of_use']['start_date']}}</dd> <dd>{{data['details_of_use']['start_date']}}</dd>