blob: 1e3c6c5356d6afa0b6d4887ac83064b03cb8d5fb (
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
|
[% 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.uri_for( '/report', problem.id ) %]">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.council;
loc(' and <strong>we will now send it to the council</strong>');
END;
tprintf(
loc( '. You can <a href="%s">view the problem on this site</a>.' ),
c.uri_for( '/report', problem.id )
);
%]
[% END %]
</p>
[% display_crosssell_advert( problem.user.email, problem.name ) %]
[% INCLUDE 'footer.html' %]
|