diff options
6 files changed, 12 insertions, 0 deletions
diff --git a/perllib/FixMyStreet/Cobrand/Lincolnshire.pm b/perllib/FixMyStreet/Cobrand/Lincolnshire.pm index 833fbff12..59e5dc6f4 100644 --- a/perllib/FixMyStreet/Cobrand/Lincolnshire.pm +++ b/perllib/FixMyStreet/Cobrand/Lincolnshire.pm @@ -17,6 +17,8 @@ sub is_two_tier { 1 } sub enable_category_groups { 1 } +sub report_sent_confirmation_email { 1 } + sub example_places { return ( 'LN1 1YL', 'Orchard Street, Lincoln' ); } diff --git a/templates/email/lincolnshire/_council_reference.html b/templates/email/lincolnshire/_council_reference.html new file mode 100644 index 000000000..56944f954 --- /dev/null +++ b/templates/email/lincolnshire/_council_reference.html @@ -0,0 +1,4 @@ +[% IF problem.external_id ~%] +<p style="[% p_style %]">The report's reference number is <strong>[% problem.external_id %]</strong>. + Please quote this if you need to contact the council about this report.</p> +[%~ END %] diff --git a/templates/email/lincolnshire/_council_reference.txt b/templates/email/lincolnshire/_council_reference.txt new file mode 100644 index 000000000..3dd3f1e9f --- /dev/null +++ b/templates/email/lincolnshire/_council_reference.txt @@ -0,0 +1,2 @@ +[% IF problem.external_id %]The report's reference number is [% problem.external_id %]. Please quote this if +you need to contact the council about this report.[% END %] diff --git a/templates/email/lincolnshire/confirm_report_sent.html b/templates/email/lincolnshire/confirm_report_sent.html new file mode 100644 index 000000000..5a0c19f0d --- /dev/null +++ b/templates/email/lincolnshire/confirm_report_sent.html @@ -0,0 +1 @@ +[% INCLUDE 'other-reported.html' %]
\ No newline at end of file diff --git a/templates/email/lincolnshire/confirm_report_sent.txt b/templates/email/lincolnshire/confirm_report_sent.txt new file mode 100644 index 000000000..72fe01f6d --- /dev/null +++ b/templates/email/lincolnshire/confirm_report_sent.txt @@ -0,0 +1 @@ +[% INCLUDE 'other-reported.txt' %]
\ No newline at end of file diff --git a/templates/web/lincolnshire/tokens/_confirm_problem_council_id.html b/templates/web/lincolnshire/tokens/_confirm_problem_council_id.html new file mode 100644 index 000000000..458e37299 --- /dev/null +++ b/templates/web/lincolnshire/tokens/_confirm_problem_council_id.html @@ -0,0 +1,2 @@ +<h2>Your issue is on its way to the council.</h2> +<p>You will receive an email with a reference number for this report soon, please quote it in any enquiries.</p> |