aboutsummaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorDave Arter <davea@mysociety.org>2015-05-12 13:01:07 +0100
committerDave Arter <davea@mysociety.org>2015-10-06 09:09:25 +0100
commitd2330b7efed5ee21403ac8f9fbd9a3bfd1d73d97 (patch)
tree58d510c648b88600c7adeb99be236e52e625cbe1 /templates
parent134757068a47f788524937d65b635bfcd7242c45 (diff)
[Zurich] Restore display of user links on admin stats page
The 'c' variable used in the category loop was clobbering an existing variable used in admin/footer.html to render the summary/logout links.
Diffstat (limited to 'templates')
-rw-r--r--templates/web/zurich/admin/stats.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/web/zurich/admin/stats.html b/templates/web/zurich/admin/stats.html
index 52b33ebc4..036778980 100644
--- a/templates/web/zurich/admin/stats.html
+++ b/templates/web/zurich/admin/stats.html
@@ -48,7 +48,7 @@
<table>
<tr><th>[% loc('Category') %]</th><th>[% loc('Count') %]</th></tr>
-[% WHILE ( c = per_category.next ) %]<tr><td>[% c.category %]</td><td>[% c.get_column('c') %]</td></tr>[% END %]
+[% WHILE ( cc = per_category.next ) %]<tr><td>[% cc.category %]</td><td>[% cc.get_column('c') %]</td></tr>[% END %]
</table>
[% INCLUDE 'admin/footer.html' %]