diff --git a/app/views/user_admin/user_stat.html.haml b/app/views/user_admin/user_stat.html.haml
--- a/app/views/user_admin/user_stat.html.haml
+++ b/app/views/user_admin/user_stat.html.haml
@@ -31,6 +31,7 @@
%th Activated?
%th Logged in
%th Contest(s)
+ %th Section
- @problems.each do |p|
%th= p.name
%th Total
@@ -46,6 +47,7 @@
%td= sc[i].activated
%td= sc[i].try(:contest_stat).try(:started_at)!=nil ? 'yes' : 'no'
%td= sc[i].contests.collect {|c| c.name}.join(', ')
+ %td= sc[i].section
- else
%td= sc[i][0]
- total += sc[i][0]