From e0ac7bfe5fcc33900abd2915dc0d1664e4acd37d Mon Sep 17 00:00:00 2001 From: richard-dds Date: Wed, 15 Aug 2018 11:28:05 -0400 Subject: [PATCH] Update form fields and copy --- atst/forms/poc.py | 8 ++++---- templates/requests/screen-3.html | 22 ++++++++++++---------- 2 files changed, 16 insertions(+), 14 deletions(-) diff --git a/atst/forms/poc.py b/atst/forms/poc.py index ced1f9e7..827bf1ae 100644 --- a/atst/forms/poc.py +++ b/atst/forms/poc.py @@ -20,16 +20,16 @@ class POCForm(ValidatedForm): am_poc = BooleanField( - "I am the technical POC.", + "I am the Workspace Owner.", default=False, false_values=(False, "false", "False", "no", "") ) - fname_poc = StringField("POC First Name", validators=[Required()]) + fname_poc = StringField("First Name", validators=[Required()]) - lname_poc = StringField("POC Last Name", validators=[Required()]) + lname_poc = StringField("Last Name", validators=[Required()]) - email_poc = EmailField("POC Email Address", validators=[Required(), Email()]) + email_poc = EmailField("Email Address", validators=[Required(), Email()]) dodid_poc = StringField( "DOD ID", validators=[Required(), Length(min=10), IsNumber()] diff --git a/templates/requests/screen-3.html b/templates/requests/screen-3.html index 0c86183c..79f4b3a0 100644 --- a/templates/requests/screen-3.html +++ b/templates/requests/screen-3.html @@ -19,18 +19,20 @@
-

Please designate a Primary Point of Contact that will be responsible for owning the workspace in the JEDI Cloud.

-

The Point of Contact will become the primary owner of the workspace created to use the JEDI Cloud. As a workspace owner, this person will have the ability to: -

    -
  • Create multiple application stacks and environments in the workspace to access the commercial cloud service provider portal
  • -
  • Add and manage users in the workspace
  • -
  • View the budget and billing history related to this workspace
  • -
  • Manage access to the Cloud Service Provider's Console
  • -
  • Transfer Workspace ownership to another person
  • -
- This POC may be you. + +

The Workspace Owner is the primary point of contact and technical administrator of the JEDI Workspace and will have the + following responsibilities:

+
    +
  • Organize your cloud-hosted systems into projects and environments
  • +
  • Add users to this workspace and manage members
  • +
  • Manage access to the JEDI Cloud service provider’s portal
  • +

+

This person must be a DoD employee (not a contractor).

+

The Workspace Owner may be you. You will be able to add other administrators later. This person will be invited via email + once your request is approved.

+ {{ CheckboxInput(f.am_poc) }}