diff --git a/atst/forms/data.py b/atst/forms/data.py index 15161558..bb88bab4 100644 --- a/atst/forms/data.py +++ b/atst/forms/data.py @@ -108,35 +108,35 @@ WORKSPACE_ROLES = [ "owner", { "name": "Workspace Owner", - "description": "Can add, edit, deactivate access to all projects, environments, and members. Can view budget reports. Can start and edit JEDI Cloud requests.", + "description": "Adds, edits, deactivates access to all projects, environments, and members. Views budget reports. Initiates and edits JEDI Cloud requests.", }, ), ( "admin", { "name": "Administrator", - "description": "Can add and edit projects, environments, members, but cannot deactivate. Cannot view budget reports or JEDI Cloud requests.", + "description": "Adds and edits projects, environments, members, but cannot deactivate. Cannot view budget reports or JEDI Cloud requests.", }, ), ( "developer", { "name": "Developer", - "description": "Can view only the projects and environments they are granted access to. Can also view members associated with each environment.", + "description": "Views only the projects and environments they are granted access to. Can also view members associated with each environment.", }, ), ( "billing_auditor", { "name": "Billing Auditor", - "description": "Can view only the projects and environments they are granted access to. Can also view budgets and reports associated with the workspace.", + "description": "Views only the projects and environments they are granted access to. Can also view budgets and reports associated with the workspace.", }, ), ( "security_auditor", { "name": "Security Auditor", - "description": "Can view only the projects and environments they are granted access to. Can also view activity logs.", + "description": "Views only the projects and environments they are granted access to. Can also view activity logs.", }, ), ] diff --git a/atst/forms/new_member.py b/atst/forms/new_member.py index 49834d9f..5d2c9f57 100644 --- a/atst/forms/new_member.py +++ b/atst/forms/new_member.py @@ -16,5 +16,6 @@ class NewMemberForm(Form): email = EmailField("Email Address", validators=[Required(), Email()]) dod_id = StringField("DOD ID", validators=[Required(), Length(min=10), IsNumber()]) workspace_role = SelectField( - "Workspace Role", choices=WORKSPACE_ROLES, validators=[Required()], default="" + "Workspace Role", choices=WORKSPACE_ROLES, validators=[Required()], default="", + description="The workspace role controls whether a member is permitted to organize a workspace into projects and environments, add members to this workspace, and view billing information." ) diff --git a/templates/components/selector.html b/templates/components/selector.html index cb374286..fb81b446 100644 --- a/templates/components/selector.html +++ b/templates/components/selector.html @@ -13,7 +13,7 @@
- {{ field.label | striptags }} +
{{ field.label | striptags }}
{% if field.description %} {{ field.description | safe }}