blob: 1fb293c520efcaf94c51a657d97cd9a24127233e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
[%
email_summary = "Thanks for logging your report";
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 %]">Your report has been logged</h1>
<p style="[% p_style %]">Your report to [% report.body %] has been logged on [% site_name %].
[% IF c.cobrand.is_council && !c.cobrand.owns_problem( report ) %]
Please note that [% c.cobrand.council_name %] is not responsible for this type
of report, so it will instead be sent to [% report.body %].
[% ELSE %]
</p>
<p style="[% p_style %]">This report's reference number is <strong>[% report.id %]</strong>.
Please quote this if you need to contact the council about this report.
[% END %]
</p>
<p style="margin: 20px auto; text-align: center">
<a style="[% button_style %]" href="[% cobrand.base_url_for_report(report) %][% report.url %]">View my report</a>
</p>
[% end_padded_box %]
</th>
[% WRAPPER '_email_sidebar.html' object = report %]
<h2 style="[% h2_style %]">[% report.title | html %]</h2>
<p style="[% secondary_p_style %]">[% report.detail | html %]</p>
[% END %]
[% INCLUDE '_email_bottom.html' %]
|