2016-12-12 12:29:29 +00:00
|
|
|
|
{% extends "withoutnav_template.html" %}
|
|
|
|
|
|
{% from "components/page-footer.html" import page_footer %}
|
2019-10-17 13:27:52 +01:00
|
|
|
|
{% from "components/page-header.html" import page_header %}
|
2023-08-30 11:07:38 -04:00
|
|
|
|
{% from "components/components/back-link/macro.njk" import usaBackLink %}
|
2016-12-12 12:29:29 +00:00
|
|
|
|
|
2017-02-13 10:45:15 +00:00
|
|
|
|
{% block per_page_title %}
|
|
|
|
|
|
Thanks for contacting us
|
2016-12-12 12:29:29 +00:00
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
2021-07-30 18:23:12 +01:00
|
|
|
|
{% block backLink %}
|
2023-08-30 11:07:38 -04:00
|
|
|
|
{{ usaBackLink({ "href": url_for('.support') }) }}
|
2021-07-30 18:23:12 +01:00
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
2016-12-12 12:29:29 +00:00
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
|
|
|
2021-07-30 18:23:12 +01:00
|
|
|
|
{{ page_header('Thanks for contacting us') }}
|
2023-06-06 15:28:24 -04:00
|
|
|
|
<p>
|
2019-07-12 10:35:49 +01:00
|
|
|
|
{% if out_of_hours_emergency %}
|
|
|
|
|
|
We’ll reply in the next 30 minutes.
|
2016-12-12 12:29:29 +00:00
|
|
|
|
{% else %}
|
2019-07-12 10:35:49 +01:00
|
|
|
|
{% if email_address_provided %}
|
|
|
|
|
|
{% if out_of_hours %}
|
|
|
|
|
|
We’ll reply within one working day.
|
|
|
|
|
|
{% else %}
|
2021-08-06 12:46:13 +01:00
|
|
|
|
We’ll aim to read your message in the next 30 minutes and we’ll reply within one
|
2019-07-12 10:35:49 +01:00
|
|
|
|
working day.
|
|
|
|
|
|
{% endif %}
|
|
|
|
|
|
{% else %}
|
|
|
|
|
|
{% if out_of_hours %}
|
2019-07-12 11:23:54 +01:00
|
|
|
|
We’ll read your message when we’re back in the office.
|
2019-07-12 10:35:49 +01:00
|
|
|
|
{% else %}
|
2021-08-06 11:50:04 +01:00
|
|
|
|
We’ll aim to read your message in the next 30 minutes.
|
2019-07-12 10:35:49 +01:00
|
|
|
|
{% endif %}
|
|
|
|
|
|
{% endif %}
|
2016-12-12 12:29:29 +00:00
|
|
|
|
{% endif %}
|
|
|
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
|
|
{% endblock %}
|