Continuing to clean up capitalization
This commit is contained in:
@@ -14,29 +14,29 @@ class PermissionsForm(BaseForm):
|
||||
perms_app_mgmt = SelectField(
|
||||
None,
|
||||
choices=[
|
||||
(PermissionSets.VIEW_PORTFOLIO_APPLICATION_MANAGEMENT, "View Only"),
|
||||
(PermissionSets.EDIT_PORTFOLIO_APPLICATION_MANAGEMENT, "Edit Access"),
|
||||
(PermissionSets.VIEW_PORTFOLIO_APPLICATION_MANAGEMENT, "View only"),
|
||||
(PermissionSets.EDIT_PORTFOLIO_APPLICATION_MANAGEMENT, "Edit access"),
|
||||
],
|
||||
)
|
||||
perms_funding = SelectField(
|
||||
None,
|
||||
choices=[
|
||||
(PermissionSets.VIEW_PORTFOLIO_FUNDING, "View Only"),
|
||||
(PermissionSets.EDIT_PORTFOLIO_FUNDING, "Edit Access"),
|
||||
(PermissionSets.VIEW_PORTFOLIO_FUNDING, "View only"),
|
||||
(PermissionSets.EDIT_PORTFOLIO_FUNDING, "Edit access"),
|
||||
],
|
||||
)
|
||||
perms_reporting = SelectField(
|
||||
None,
|
||||
choices=[
|
||||
(PermissionSets.VIEW_PORTFOLIO_REPORTS, "View Only"),
|
||||
(PermissionSets.EDIT_PORTFOLIO_REPORTS, "Edit Access"),
|
||||
(PermissionSets.VIEW_PORTFOLIO_REPORTS, "View only"),
|
||||
(PermissionSets.EDIT_PORTFOLIO_REPORTS, "Edit access"),
|
||||
],
|
||||
)
|
||||
perms_portfolio_mgmt = SelectField(
|
||||
None,
|
||||
choices=[
|
||||
(PermissionSets.VIEW_PORTFOLIO_ADMIN, "View Only"),
|
||||
(PermissionSets.EDIT_PORTFOLIO_ADMIN, "Edit Access"),
|
||||
(PermissionSets.VIEW_PORTFOLIO_ADMIN, "View only"),
|
||||
(PermissionSets.EDIT_PORTFOLIO_ADMIN, "Edit access"),
|
||||
],
|
||||
)
|
||||
|
||||
|
@@ -52,7 +52,7 @@ class Invitation:
|
||||
inviter,
|
||||
member,
|
||||
email,
|
||||
subject="{} has invited you to a JEDI Cloud Portfolio",
|
||||
subject="{} has invited you to a JEDI cloud portfolio",
|
||||
email_template="emails/invitation.txt",
|
||||
):
|
||||
self.inviter = inviter
|
||||
|
@@ -10,7 +10,7 @@ MESSAGES = {
|
||||
"task_order_draft": {
|
||||
"title_template": translate("task_orders.form.draft_alert_title"),
|
||||
"message_template": """
|
||||
<p>Please complete your Task Order before submitting it for approval.</p>
|
||||
<p>Please complete your task order before submitting it for approval.</p>
|
||||
""",
|
||||
"category": "warning",
|
||||
},
|
||||
@@ -73,7 +73,7 @@ MESSAGES = {
|
||||
"portfolio_member_dod_id_error": {
|
||||
"title_template": "CAC ID Error",
|
||||
"message_template": """
|
||||
The member attempted to accept this invite, but their CAC ID did not match the CAC ID you specified on the invite. Please confirm that the DOD ID is accurate.
|
||||
The member attempted to accept this invite, but their CAC ID did not match the CAC ID you specified on the invite. Please confirm that the DoD ID is accurate.
|
||||
""",
|
||||
"category": "error",
|
||||
},
|
||||
@@ -127,7 +127,7 @@ MESSAGES = {
|
||||
"task_order_incomplete": {
|
||||
"title_template": "Task Order Incomplete",
|
||||
"message_template": """
|
||||
You must complete your Task Order form before submitting.
|
||||
You must complete your task order form before submitting.
|
||||
""",
|
||||
"category": "error",
|
||||
},
|
||||
|
Reference in New Issue
Block a user