blob: 5892d0f9ee327680e2d72b7e41eb61d754a68862 (
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
|
[% INCLUDE 'header.html', bodyclass = 'fullwidthpage', title = loc('Confirmation') %]
<div class="confirmation-header">
<h1><a href="[% c.cobrand.base_url_for_report( report ) %][% report.url %]">[% report.title %]</a></h1>
[% IF c.cobrand.is_council %]
<h2>Your issue is on its way to the council.</h2>
<p>Your reference for this report is [% report.id %], please quote it in any enquiries.</p>
[% ELSE %]
<h2>[% loc('Thank you for reporting this issue!') %]</h2>
[% IF report.bodies_str %]
<p>[% loc('It’s on its way to the council right now.') %]</p>
[% END %]
[% END %]
[% TRY %][% INCLUDE 'tokens/_extras_confirm.html' %][% CATCH file %][% END %]
</div>
[% INCLUDE
next_steps.html,
just_interacted = 1,
share_url = c.cobrand.base_url_for_report(report) _ report.url,
twitter_comment = loc('I just reported a problem on @fixmystreet')
%]
[% INCLUDE 'footer.html' %]
|