@@ -99,13 +99,13 @@
{{ auditee_name | default_if_none:''
{% if federal_awards_workbook.completed == True %}
{% else %}
{% endif %}
@@ -121,7 +121,7 @@ {{ auditee_name | default_if_none:''
@@ -134,9 +134,9 @@
{{ auditee_name | default_if_none:''
@@ -151,9 +151,9 @@ {{ auditee_name | default_if_none:''
@@ -168,9 +168,9 @@ {{ auditee_name | default_if_none:''
@@ -185,9 +185,9 @@ {{ auditee_name | default_if_none:''
@@ -202,9 +202,9 @@ {{ auditee_name | default_if_none:''
@@ -227,9 +227,9 @@ {{ auditee_name | default_if_none:''
@@ -245,9 +245,9 @@ {{ auditee_name | default_if_none:''
@@ -257,7 +257,7 @@ {{ auditee_name | default_if_none:''
href="{% url 'audit:AuditorCertification' report_id=report_id %}">Auditor Certification
{% else %}
Auditor Certification
{% endif %}
@@ -271,9 +271,9 @@ {{ auditee_name | default_if_none:''
@@ -283,7 +283,7 @@ {{ auditee_name | default_if_none:''
href="{% url 'audit:AuditeeCertification' report_id=report_id %}">Auditee Certification
{% else %}
Auditee Certification
{% endif %}
@@ -297,9 +297,9 @@ {{ auditee_name | default_if_none:''
@@ -309,7 +309,7 @@ {{ auditee_name | default_if_none:''
href="{% url 'audit:Submission' report_id=report_id %}">Submit to FAC for processing
{% else %}
Submit to FAC for processing
{% endif %}
diff --git a/backend/config/settings.py b/backend/config/settings.py
index 9ea8ff465c..3150eb57f9 100644
--- a/backend/config/settings.py
+++ b/backend/config/settings.py
@@ -302,7 +302,7 @@
CSP_IMG_SRC = allowed_sources
CSP_MEDIA_SRC = allowed_sources
CSP_FRAME_SRC = allowed_sources
- CSP_FONT_SRC = ("self", bucket)
+ CSP_FONT_SRC = ("'self'", bucket)
CSP_WORKER_SRC = allowed_sources
CSP_FRAME_ANCESTORS = allowed_sources
CSP_STYLE_SRC = allowed_sources
diff --git a/backend/report_submission/templates/cancel-button.html b/backend/report_submission/templates/cancel-button.html
index 0a52eb41e9..9864e7ecbf 100644
--- a/backend/report_submission/templates/cancel-button.html
+++ b/backend/report_submission/templates/cancel-button.html
@@ -1,4 +1,5 @@
+{% load static %}
Cancel
@@ -31,7 +32,7 @@ Cancel audit submission
aria-label="Close this window"
data-close-modal>
diff --git a/backend/report_submission/templates/report_submission/step-2.html b/backend/report_submission/templates/report_submission/step-2.html
index b4136ea0be..33db2af464 100644
--- a/backend/report_submission/templates/report_submission/step-2.html
+++ b/backend/report_submission/templates/report_submission/step-2.html
@@ -18,7 +18,7 @@
Your UEI was not confirmed
@@ -184,7 +184,7 @@
aria-label="Close this window"
data-close-modal>
diff --git a/backend/report_submission/templates/report_submission/step-3.html b/backend/report_submission/templates/report_submission/step-3.html
index 715fa3b2f9..05ac751bbe 100644
--- a/backend/report_submission/templates/report_submission/step-3.html
+++ b/backend/report_submission/templates/report_submission/step-3.html
@@ -244,7 +244,7 @@
aria-label="Delete contact"
title="Delete contact">
@@ -349,7 +349,7 @@
aria-label="Delete contact"
title="Delete contact">
diff --git a/backend/schemas/output/sections/GeneralInformation.schema.json b/backend/schemas/output/sections/GeneralInformation.schema.json
index f8b2e75f1f..e6b4001e2f 100644
--- a/backend/schemas/output/sections/GeneralInformation.schema.json
+++ b/backend/schemas/output/sections/GeneralInformation.schema.json
@@ -25,14 +25,18 @@
"enum": [
"AL",
"AK",
+ "AS",
"AZ",
"AR",
"CA",
"CO",
"CT",
"DE",
+ "DC",
+ "FM",
"FL",
"GA",
+ "GU",
"HI",
"ID",
"IL",
@@ -42,6 +46,7 @@
"KY",
"LA",
"ME",
+ "MH",
"MD",
"MA",
"MI",
@@ -57,10 +62,13 @@
"NY",
"NC",
"ND",
+ "MP",
"OH",
"OK",
"OR",
+ "PW",
"PA",
+ "PR",
"RI",
"SC",
"SD",
@@ -68,6 +76,7 @@
"TX",
"UT",
"VT",
+ "VI",
"VA",
"WA",
"WV",
diff --git a/backend/schemas/source/base/Base.libsonnet b/backend/schemas/source/base/Base.libsonnet
index efb306624d..46ef59b3fd 100644
--- a/backend/schemas/source/base/Base.libsonnet
+++ b/backend/schemas/source/base/Base.libsonnet
@@ -126,18 +126,23 @@ local Enum = {
],
title: 'EmptyString_EmptyArray_Null',
},
+ // Source: https://pe.usps.com/text/pub28/28apb.htm
UnitedStatesStateAbbr: Types.string {
enum: [
'AL',
'AK',
+ 'AS',
'AZ',
'AR',
'CA',
'CO',
'CT',
'DE',
+ 'DC',
+ 'FM',
'FL',
'GA',
+ 'GU',
'HI',
'ID',
'IL',
@@ -147,6 +152,7 @@ local Enum = {
'KY',
'LA',
'ME',
+ 'MH',
'MD',
'MA',
'MI',
@@ -162,10 +168,13 @@ local Enum = {
'NY',
'NC',
'ND',
+ 'MP',
'OH',
'OK',
'OR',
+ 'PW',
'PA',
+ 'PR',
'RI',
'SC',
'SD',
@@ -173,6 +182,7 @@ local Enum = {
'TX',
'UT',
'VT',
+ 'VI',
'VA',
'WA',
'WV',
diff --git a/backend/templates/includes/nav_primary.html b/backend/templates/includes/nav_primary.html
index ce8cc8e204..69740ef5a7 100644
--- a/backend/templates/includes/nav_primary.html
+++ b/backend/templates/includes/nav_primary.html
@@ -47,7 +47,7 @@