diff --git a/atst/forms/task_order.py b/atst/forms/task_order.py index 2585a673..7d02d3a6 100644 --- a/atst/forms/task_order.py +++ b/atst/forms/task_order.py @@ -41,6 +41,7 @@ class TaskOrderForm(BaseForm): ) pdf = FileField( None, + description="Your file may not exceed 50MB", validators=[ FileAllowed(["pdf"], translate("forms.task_order.file_format_not_allowed")), FileLength(message=translate("forms.validators.file_length")), diff --git a/styles/sections/_task_order.scss b/styles/sections/_task_order.scss index 9b84e463..2f000ad0 100644 --- a/styles/sections/_task_order.scss +++ b/styles/sections/_task_order.scss @@ -78,6 +78,10 @@ margin: 1.5em 0; } + .usa-input { + margin: $gap 0; + } + .task-order__loa-fieldset { .usa-input { margin: 0; @@ -96,6 +100,10 @@ margin-bottom: 0; } } + + .task-order__pdf-help-text { + margin-bottom: 4 * $gap; + } } .row.row__form-fields { diff --git a/templates/task_orders/edit.html b/templates/task_orders/edit.html index 3bcf58f3..a2961843 100644 --- a/templates/task_orders/edit.html +++ b/templates/task_orders/edit.html @@ -366,7 +366,7 @@
Upload your supporting documentation
-
+
Upload a single PDF containing all relevant information. {{ Icon('help')}}
{{ UploadInput(form.pdf) }}