From 700146f3af10fb03f926905a9b1a2a43d9a32597 Mon Sep 17 00:00:00 2001 From: Daniel Miranda Date: Wed, 16 Aug 2023 12:43:01 -0700 Subject: [PATCH] added delayed response notice to foundation donor help page (#1761) * added delayed response notice to foundation donor help page * updated notice location * Update contributor_support_page_master.html --- .../pages/core/contributor_support_page.html | 20 ++++++++++++++++++- .../core/contributor_support_page_master.html | 3 +++ source/sass/components/_support-form.scss | 10 ++++++++++ 3 files changed, 32 insertions(+), 1 deletion(-) diff --git a/donate/templates/pages/core/contributor_support_page.html b/donate/templates/pages/core/contributor_support_page.html index 0c9ee9aa2..f16bb90e6 100644 --- a/donate/templates/pages/core/contributor_support_page.html +++ b/donate/templates/pages/core/contributor_support_page.html @@ -1,3 +1,21 @@ {% extends "pages/core/contributor_support_page_master.html" %} -{# There are no overrides in this template, but alternative apps can template-overide this file (e.g. thunderbird) #} +{% load i18n %} + + +{% block delayed_response_notice %} +
+

+ + {% blocktrans trimmed %} + Our team is experiencing a backlog in donor inquiries. Please expect a delay of up to 5 business days to respond to your inquiry. + {% endblocktrans %} + +

+

+ {% blocktrans trimmed %} + If you are a current donor, you can use the self-service option to log into your donor portal. You can see receipts and make changes to your monthly gift. To access your log in page, refer to your link in a recent donation email. + {% endblocktrans %} +

+
+{% endblock %} diff --git a/donate/templates/pages/core/contributor_support_page_master.html b/donate/templates/pages/core/contributor_support_page_master.html index 9736b445e..d427675a7 100644 --- a/donate/templates/pages/core/contributor_support_page_master.html +++ b/donate/templates/pages/core/contributor_support_page_master.html @@ -62,6 +62,9 @@

{% else %}
+ {% block delayed_response_notice %} + {% endblock %} + {% block donate_support_text %}

{% blocktrans trimmed %} diff --git a/source/sass/components/_support-form.scss b/source/sass/components/_support-form.scss index 77a3e87ed..00b5f6fb9 100644 --- a/source/sass/components/_support-form.scss +++ b/source/sass/components/_support-form.scss @@ -6,6 +6,16 @@ @include font-size(l); } + .delayed-response-notice { + background-color: $color--light-red; + padding: 1em 1.5em 0.5em; + margin-bottom: 2em; + + p { + @include font-size(m); + } + } + .privacy-notice { margin-bottom: 1em; }