diff --git a/app/views/content_change_requests/new.html.erb b/app/views/content_change_requests/new.html.erb index 7a1cd5459..338bcfcdc 100644 --- a/app/views/content_change_requests/new.html.erb +++ b/app/views/content_change_requests/new.html.erb @@ -25,6 +25,8 @@ <%= render partial: "request_details", locals: { f: f} %> + <%= render partial: "support/attachment_instructions" %> + <%= render partial: "support/time_constraint", locals: { f: f } %>
diff --git a/app/views/new_feature_requests/new.html.erb b/app/views/new_feature_requests/new.html.erb index 5e2c0bf41..360146b9c 100644 --- a/app/views/new_feature_requests/new.html.erb +++ b/app/views/new_feature_requests/new.html.erb @@ -8,6 +8,8 @@ <%= render partial: "request_details", locals: { f: f } %> + <%= render partial: "support/attachment_instructions" %> + <%= render partial: "support/time_constraint", locals: { f: f } %> <%= f.action :submit, label: "Submit", button_html: { class: "btn btn-success" } %> diff --git a/app/views/support/_attachment_instructions.html b/app/views/support/_attachment_instructions.html new file mode 100644 index 000000000..1b8c95d02 --- /dev/null +++ b/app/views/support/_attachment_instructions.html @@ -0,0 +1,3 @@ +
+

If you have relevant supporting documents, or files for us to host, please send them as attachments in reply to the acknowledgement email you will receive shortly.

+
\ No newline at end of file