X-Git-Url: http://git.ieval.ro/?a=blobdiff_plain;f=lib%2FGruntmaster%2FPage%2FLog.pm;h=6848bcfc8dbf141f7e8f97c4d2483f928fffe89c;hb=1ad43ccc6aec756b3f2cc47b9da57ba67de29165;hp=f63f832cf0279d0c01916c513e7d2b810691475e;hpb=6dddb2f8ea66961f2a3bfd02d18b2af371ea0d67;p=plack-app-gruntmaster.git diff --git a/lib/Gruntmaster/Page/Log.pm b/lib/Gruntmaster/Page/Log.pm index f63f832..6848bcf 100644 --- a/lib/Gruntmaster/Page/Log.pm +++ b/lib/Gruntmaster/Page/Log.pm @@ -19,12 +19,12 @@ sub _generate{ date => (job_date() ? strftime ('%c' => localtime job_date) : '?'), extension => job_extension, name => problem_name job_problem, - user_name => do { local $Gruntmaster::Data::contest; user_name job_user }, problem => job_problem, result => job_result, result_text => job_result_text, size => sprintf ("%.2f KiB", job_filesize() / 1024), user => job_user}, ($page - 1) * PAGE_SIZE + 1 .. ($page == $pages ? jobcard : $page * PAGE_SIZE); + $_->{user_name} = do { local $Gruntmaster::Data::contest; user_name $_->{user} } for @log; $htc->param(log => \@log); $htc->param(next => $page + 1) unless $page == $pages; $htc->param(prev => $page - 1) unless $page == 1;