diff options
Diffstat (limited to 'templates/web/base/tokens/confirm_problem.html')
-rw-r--r-- | templates/web/base/tokens/confirm_problem.html | 49 |
1 files changed, 28 insertions, 21 deletions
diff --git a/templates/web/base/tokens/confirm_problem.html b/templates/web/base/tokens/confirm_problem.html index 723d515e1..217fb0a72 100644 --- a/templates/web/base/tokens/confirm_problem.html +++ b/templates/web/base/tokens/confirm_problem.html @@ -1,30 +1,37 @@ -[% INCLUDE 'header.html', title = loc('Confirmation') %] +[% INCLUDE 'header.html', bodyclass = 'fullwidthpage', title = loc('Confirmation') %] -<h1>[% loc('Confirmation') %]</h1> +<div class="confirmation-header"> + <h1>[% loc('Your problem has been confirmed!') %]</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. + <p> + 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.</p> + [% 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 - ); -%] + + <p> + [% loc('Thank you for reporting this issue') %]. + [% IF problem.bodies_str; + loc('<strong>We will now send it to the council</strong>.'); + END; %] + </p> + + <p> + [% tprintf( + loc( 'You can <a href="%s%s">view the problem on this site</a>.' ), + c.cobrand.base_url_for_report( problem ), + problem.url + ); %] + </p> + [% END %] -</p> + +</div> [% display_crosssell_advert( problem.user.email, problem.name ) %] |