diff options
Diffstat (limited to 'templates/email/default/questionnaire.html')
-rw-r--r-- | templates/email/default/questionnaire.html | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/templates/email/default/questionnaire.html b/templates/email/default/questionnaire.html new file mode 100644 index 000000000..814e5a658 --- /dev/null +++ b/templates/email/default/questionnaire.html @@ -0,0 +1,36 @@ +[% + +title = report.title | html; +email_summary = "Got a minute spare? Let us know what happened to your " _ site_name _ " report about ${ title }."; +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 %]">Has your problem been fixed?</h1> + <p style="[% p_style %]">[% created %] ago, you reported a problem using [% site_name %].</p> + <p style="[% p_style %]">Help us keep [% site_name %] up to date by letting us know whether the problem has been fixed yet:</p> + <p style="margin: 20px auto; text-align: center"> + <a style="[% fixed_button_style %]" href="[% url %]">Fixed</a> + <a style="[% notfixed_button_style %]" href="[% url %]">Not fixed</a> + </p> + <p style="[% p_style %]">Thank you! Your feedback is really valuable.</p> + [% end_padded_box %] +</th> +<th style="[% td_style %][% secondary_column_style %]" id="secondary_column"> + <img style="[% map_image_style %]" src="[% inline_image(report.static_map, 'map.jpeg') %]" width="310" height="200" alt=""> + [% start_padded_box %] + [% IF report.photo %] + <img style="[% preview_photo_style %]" src="[% inline_image(report.get_first_image_fp) %]" alt="" align="right"> + [% END %] + <h2 style="[% h2_style %]">[% title %]</h2> + <p style="[% secondary_p_style %]">[% report.detail | html %]</p> + [% end_padded_box %] +</th> + +[% INCLUDE '_email_bottom.html' %] |