blob: 1a12446d09f62b0defb2c0835f2ac051bfc5a6c6 (
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
|
[%
email_summary = "Your report on " _ site_name _ " has been moderated.";
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 moderated</h1>
[% IF types == 'hide' -%]
<p style="[% p_style %]">The report has been hidden from the site.</p>
[% ELSE %]
<p style="[% p_style %]">The following data has been changed: <strong>[% types %]</strong></p>
<p style="margin: 20px auto; text-align: center">
<a style="[% button_style %]" href="[% report_uri %]">View my report</a>
</p>
[% END -%]
<p style="[% p_style %]">If you do not think that this report should have been moderated, you may contact
the team at <a href="[% report_complain_uri %]">[% report_complain_uri %]</a></p>
[% end_padded_box %]
</th>
[% WRAPPER '_email_sidebar.html' object = problem %]
<h2 style="[% h2_style %]">[% problem.moderation_original_data.title | html %]</h2>
<p style="[% secondary_p_style %]">[% problem.moderation_original_data.detail | html %]</p>
[% END %]
[% INCLUDE '_email_bottom.html' %]
|