2016-12-12 12:29:29 +00:00
|
|
|
|
{% extends "withoutnav_template.html" %}
|
|
|
|
|
|
{% from "components/textbox.html" import textbox %}
|
|
|
|
|
|
{% from "components/page-footer.html" import page_footer %}
|
2019-10-17 13:27:52 +01:00
|
|
|
|
{% from "components/page-header.html" import page_header %}
|
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 %}
|
|
|
|
|
|
|
|
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
|
|
|
2019-10-17 13:27:52 +01:00
|
|
|
|
{{ page_header(
|
|
|
|
|
|
'Thanks for contacting us',
|
|
|
|
|
|
back_link=url_for('.support')
|
|
|
|
|
|
) }}
|
2020-05-29 17:11:01 +01:00
|
|
|
|
<p class="govuk-body">
|
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 %}
|
2019-07-12 11:23:54 +01:00
|
|
|
|
We’ll read your message in the next 30 minutes and 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 %}
|
2019-07-12 11:23:54 +01:00
|
|
|
|
We’ll 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 %}
|