diff options
Diffstat (limited to 'templates/web/base/questionnaire/completed.html')
-rw-r--r-- | templates/web/base/questionnaire/completed.html | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/templates/web/base/questionnaire/completed.html b/templates/web/base/questionnaire/completed.html new file mode 100644 index 000000000..4d848a63c --- /dev/null +++ b/templates/web/base/questionnaire/completed.html @@ -0,0 +1,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) OR (!new_state AND problem.is_closed) %] + +[% INCLUDE 'questionnaire/completed-open.html' %] +[% advert_outcome = 0 %] + +[% ELSIF been_fixed == 'Yes' %] + +[% 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.bodies_str ) %] +[% END %] + +[% INCLUDE 'footer.html' %] |