From: Marius Gavrilescu Date: Tue, 28 Jan 2014 13:01:59 +0000 (+0200) Subject: General standings should not list problems X-Git-Url: http://git.ieval.ro/?p=gruntmaster-page.git;a=commitdiff_plain;h=746789c0a194d8151e7e9dd830365e218206601f General standings should not list problems --- 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); }