diff options
author | Struan Donald <struan@exo.org.uk> | 2017-09-08 13:39:06 +0100 |
---|---|---|
committer | Matthew Somerville <matthew-github@dracos.co.uk> | 2017-09-11 11:18:30 +0100 |
commit | 30ea791525c6ec32c17ee108397e098477982eee (patch) | |
tree | 9e8fae32685c851795407a6fddb23d9113c34f22 | |
parent | abe48bed22685e0a52db76ada71045dfd51a446f (diff) |
[Oxfordshire] include response times in problem confirm emails
-rw-r--r-- | templates/email/oxfordshire/_problem-confirm_extra.html | 14 | ||||
-rw-r--r-- | templates/email/oxfordshire/_problem-confirm_extra.txt | 12 |
2 files changed, 26 insertions, 0 deletions
diff --git a/templates/email/oxfordshire/_problem-confirm_extra.html b/templates/email/oxfordshire/_problem-confirm_extra.html new file mode 100644 index 000000000..5e22be6b9 --- /dev/null +++ b/templates/email/oxfordshire/_problem-confirm_extra.html @@ -0,0 +1,14 @@ +[% IF c.cobrand.problem_response_days(report) == 'emergency' %] + <p> + Thank you for contacting Oxfordshire County Council [% report.category %], unfortunately we are currently only available to respond to emergency situations which may have an impact on the health and safety of members of the public, these will be dealt with within a 24 hour period.<br /> + Reported faults will continue to be registered on our management system and these will be tackled in coming months. + </p> +[% ELSIF c.cobrand.problem_response_days(report) > 0 %] + <p> + Problems in the + [% report.category %] + category are generally responded to within + [% c.cobrand.problem_response_days(report) %] + working days. + </p> +[% END %] diff --git a/templates/email/oxfordshire/_problem-confirm_extra.txt b/templates/email/oxfordshire/_problem-confirm_extra.txt new file mode 100644 index 000000000..eb9ccfd12 --- /dev/null +++ b/templates/email/oxfordshire/_problem-confirm_extra.txt @@ -0,0 +1,12 @@ +[% IF c.cobrand.problem_response_days(report) == 'emergency' %] +Thank you for contacting Oxfordshire County Council [% report.category %], +unfortunately we are currently only available to respond to emergency +situations which may have an impact on the health and safety of members +of the public, these will be dealt with within a 24 hour period. + +Reported faults will continue to be registered on our management +system and these will be tackled in coming months. +[% ELSIF c.cobrand.problem_response_days(report) > 0 %] +Problems in the [% report.category %] category are generally responded +to within [% c.cobrand.problem_response_days(report) %] working days. +[% END %] |