blob: a125d48bd35eec7747fc21790d1cdea08ce4c7cb (
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
|
[%
INCLUDE 'header.html', title = loc('Questionnaire')
%]
[% advert_outcome = 1 %]
[% IF been_fixed == 'Unknown' %]
[% loc('<p>Thank you very much for filling in our questionnaire; if you
get some more information about the status of your problem, please come back to the
site and leave an update.</p>') %]
[% ELSIF new_state == 'confirmed' OR (!new_state AND problem.is_open) %]
[% INCLUDE 'questionnaire/completed-open.html' %]
[% advert_outcome = 0 %]
[% ELSE %]
[% loc('<p style="font-size:150%">Thank you very much for filling in our questionnaire; glad to hear it’s been fixed.</p>') %]
[% END %]
[% IF advert_outcome %]
[% display_crosssell_advert( problem.user.email, problem.name, 'council', problem.council ) %]
[% END %]
[% INCLUDE 'footer.html' %]
|