blob: 48e6871c2050ae9d2126254a1a225d85cb827402 (
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
|
[%
title = report.title | html;
category = report.category | html;
email_summary = "New updates on " _ category _ " 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 %]">New updates on <a href="[% problem_url %]">[% category %] report</a></h1>
[%~ INCLUDE '_email_comment_list.html' %]
<p style="[% p_style %]"><a href="[% unsubscribe_url %]">Unsubscribe from alerts about this report</a></p>
[% end_padded_box %]
</th>
[% WRAPPER '_email_sidebar.html' object = report %]
<h2 style="[% h2_style %]">[% title | html %]</h2>
<p style="[% secondary_p_style %]">[% report.detail | html %]</p>
[%~ INCLUDE '_council_reference.html' problem=report p_style=secondary_p_style %]
[% END %]
[% INCLUDE '_email_bottom.html' %]
|