diff options
Diffstat (limited to 'templates/web/base/admin/questionnaire.html')
-rw-r--r-- | templates/web/base/admin/questionnaire.html | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/templates/web/base/admin/questionnaire.html b/templates/web/base/admin/questionnaire.html new file mode 100644 index 000000000..680e0d214 --- /dev/null +++ b/templates/web/base/admin/questionnaire.html @@ -0,0 +1,30 @@ +[% INCLUDE 'admin/header.html' title=loc('Survey Results') %] + +<table border="1"> + <tr> + <th>[% loc('Reported before') %]</th> + <th>[% loc('Not reported before') %]</th> + </tr> + [% IF questionnaires.total > 0 %] + <tr> + <td>[% questionnaires.1 %] ([% 100 * questionnaires.1 / questionnaires.total | format('%.1f') %]%)</td> + <td>[% questionnaires.0 %] ([% 100 * questionnaires.0 / questionnaires.total | format('%.1f') %]%)</td> + </tr> + [% ELSE %] + <tr> + <td>[% loc('n/a') %]</td> + <td>[% loc('n/a') %]</td> + </tr> + [% END %] +</table> + +<h2>[% loc('Problem state change based on survey results') %]</h2> + +<table> +<tr><th>[% loc('Old state') %]</th><th>[% loc('New state') %]</th><th>[% loc('Total') %]</th></tr> +[% WHILE ( s = state_changes.next ) %] +<tr><td>[% s.old_state %]</td><td>[% s.new_state %]</td><td>[% s.get_column('c') %] ([% 100 * s.get_column('c') / state_changes_count | format('%.1f') %]%)</td></tr> +[% END %] +</table> + +[% INCLUDE 'admin/footer.html' %] |