blob: 7569583804bc9fcbb8d92b78a0a5ec8e0d0ee80d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
[% INCLUDE 'header.html', title => loc('Confirmation') %]
<h1>[% loc('Confirmation') %]</h1>
<p class="confirmed">
[%
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 )
);
%]
</p>
[% display_crosssell_advert( problem.user.email, problem.name ) %]
[% INCLUDE 'footer.html' %]
|