From 746789c0a194d8151e7e9dd830365e218206601f Mon Sep 17 00:00:00 2001 From: Marius Gavrilescu Date: Tue, 28 Jan 2014 15:01:59 +0200 Subject: [PATCH] General standings should not list problems --- lib/Gruntmaster/Page/St.pm | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/lib/Gruntmaster/Page/St.pm b/lib/Gruntmaster/Page/St.pm index b91137e..b50490c 100644 --- a/lib/Gruntmaster/Page/St.pm +++ b/lib/Gruntmaster/Page/St.pm @@ -11,11 +11,14 @@ use constant TEMPLATES => { en => <<'HTML', -
UsernameTotal +
UsernameTotal +
UsernameScore + +
- - + +
HTML @@ -46,7 +49,7 @@ sub _generate{ scores => [map { $scores{$user}{$_} // '-'} @problems], } } keys %scores; - $htc->param(problems => [map { problem_name } @problems ]); + $htc->param(problems => [map { problem_name } @problems ]) if $Gruntmaster::Data::contest; $htc->param(st => \@st); } -- 2.39.2