diff options
author | Matthew Somerville <matthew@mysociety.org> | 2019-11-18 12:45:06 +0000 |
---|---|---|
committer | Dave Arter <davea@mysociety.org> | 2019-12-09 12:50:07 +0000 |
commit | 6c6c3d0b9dee563b68710db4aeaacda4e960080d (patch) | |
tree | b6af12e21fca9efdd6f2f3e20f0dda30dfa6e575 /templates/email/tfl/problem-confirm.html | |
parent | ee3920cb4d07788a6f75c567ad3b1755bba9186e (diff) |
[TfL] Make sure emails use "Transport for London".
Diffstat (limited to 'templates/email/tfl/problem-confirm.html')
-rw-r--r-- | templates/email/tfl/problem-confirm.html | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/templates/email/tfl/problem-confirm.html b/templates/email/tfl/problem-confirm.html new file mode 100644 index 000000000..458e7bed9 --- /dev/null +++ b/templates/email/tfl/problem-confirm.html @@ -0,0 +1,28 @@ +[% + +email_summary = "You need to confirm your " _ site_name _ " report before it can be sent to Transport for London."; +email_columns = 2; + +PROCESS '_email_settings.html'; + +INCLUDE '_email_top.html'; + +%] + +<th style="[% td_style %][% primary_column_style %]" id="primary_column"> + [% start_padded_box %] + <h1 style="[% h1_style %]">Please confirm your report</h1> + <p style="[% p_style %]">Please click on the link below to confirm that you want to send your report to Transport for London.</p> + [% UNLESS report.non_public %]<p style="[% p_style %]">Your report will also appear on the [% site_name %] website.</p>[% END %] + <p style="margin: 20px auto; text-align: center"> + <a style="[% button_style %]" href="[% token_url %]">Yes, send my report</a> + </p> + <p style="[% p_style %]">If you no longer wish to send this report, please take no further action.</p> + [% end_padded_box %] +</th> +[% WRAPPER '_email_sidebar.html' object = report, url = token_url %] + <h2 style="[% h2_style %]">[% report.title | html %]</h2> + <p style="[% secondary_p_style %]">[% report.detail | html %]</p> +[% END %] + +[% INCLUDE '_email_bottom.html' %] |