blob: 51b4599253063a10a4148dcfd8b8375c94dfbaaf (
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
|
[% INCLUDE 'header.html', title = loc('Confirmation') %]
<h1>[% loc('Confirmation') %]</h1>
<p class="confirmed">
[% IF c.cobrand.is_council %]
Thank you. You have successfully confirmed your report
and this will now be investigated by the council.
You can <a href="[% c.cobrand.base_url_for_report( problem ) %][% problem.url %]">view the problem on this site</a>.
</p>
<p>Your reference for this problem is [% problem.id %], please quote it in any enquiries.
[% ELSE %]
[%
loc('You have successfully confirmed your problem');
IF problem.bodies_str;
loc(' and <strong>we will now send it to the council</strong>');
END; %].
[%
tprintf(
loc( 'You can <a href="%s%s">view the problem on this site</a>.' ),
c.cobrand.base_url_for_report( problem ),
problem.url
);
%]
[% END %]
</p>
[% display_crosssell_advert( problem.user.email, problem.name ) %]
[% INCLUDE 'report/extra_analytics.html' %]
[% INCLUDE 'footer.html' %]
|