blob: 01ac992ab57d8add3cf2cff5576ac1053f03327f (
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
|
[% INCLUDE 'header.html', bodyclass = 'fullwidthpage', title = loc('Confirmation');
DEFAULT problem = update.problem;
SET problem_url = c.uri_for('/report', problem.id);
IF update;
problem_url = problem_url _ '#update_' _ update.id;
END;
%]
<div class="confirmation-header">
<h1><a href="[% problem_url %]">[% problem.title %]</a></h1>
<h2>[% loc('Thank you for updating this issue!') %]</h2>
</div>
[% INCLUDE
next_steps.html,
just_interacted = 1,
share_url = c.cobrand.base_url_for_report(problem) _ problem.url,
twitter_comment = loc('I just updated a problem on @fixmystreet')
%]
[% INCLUDE 'footer.html' %]
|