aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Somerville <matthew@mysociety.org>2011-07-12 22:34:35 +0100
committerMatthew Somerville <matthew@mysociety.org>2011-07-12 22:34:35 +0100
commitaefe2727c702353e28637954d372c6a530c94f4f (patch)
tree8be9568b8f3fd4492a3872b774967eef498047a5
parent5de9a72c4c5c9ae5eafcb0e1aa8f8e3f1d2b3855 (diff)
Use right variable name.
-rw-r--r--templates/web/default/admin/questionnaire.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/web/default/admin/questionnaire.html b/templates/web/default/admin/questionnaire.html
index 161bc9ba7..cd8f63481 100644
--- a/templates/web/default/admin/questionnaire.html
+++ b/templates/web/default/admin/questionnaire.html
@@ -23,7 +23,7 @@
<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.count %] ([% 100 * s.count / questionnaires.total | format('%.1f') %]%)</td></tr>
+<tr><td>[% s.old_state %]</td><td>[% s.new_state %]</td><td>[% s.count %] ([% 100 * s.c / questionnaires.total | format('%.1f') %]%)</td></tr>
[% END %]
</table>