aboutsummaryrefslogtreecommitdiffstats
path: root/templates/web/default/admin/questionnaire.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/web/default/admin/questionnaire.html')
-rw-r--r--templates/web/default/admin/questionnaire.html30
1 files changed, 0 insertions, 30 deletions
diff --git a/templates/web/default/admin/questionnaire.html b/templates/web/default/admin/questionnaire.html
deleted file mode 100644
index 680e0d214..000000000
--- a/templates/web/default/admin/questionnaire.html
+++ /dev/null
@@ -1,30 +0,0 @@
-[% 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' %]