diff --git a/atst/forms/request.py b/atst/forms/request.py index 3b6e5904..6b670650 100644 --- a/atst/forms/request.py +++ b/atst/forms/request.py @@ -112,6 +112,12 @@ class RequestForm(ValidatedForm): ) 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?" ) diff --git a/templates/requests/screen-1.html b/templates/requests/screen-1.html index bcb9276d..51011f2c 100644 --- a/templates/requests/screen-1.html +++ b/templates/requests/screen-1.html @@ -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.") }}
So this means you are spending approximately $X annually
{{ TextInput(f.dollar_value) }} {{ 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) }} diff --git a/templates/requests/screen-4.html b/templates/requests/screen-4.html index 2e940e57..add689ff 100644 --- a/templates/requests/screen-4.html +++ b/templates/requests/screen-4.html @@ -98,10 +98,15 @@