From e72e054eb8a6d24518ee1d7f9f6c3d2b123353b0 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Mon, 14 Feb 2005 23:17:03 +0000 Subject: [PATCH] Add preliminary edit boxes (no backend) for columns missing data. --- html/show-tournament.pl | 17 +++++++++-------- html/templates/show-tournament.tmpl | 29 +++++++++++++++++++++++++++++ 2 files changed, 38 insertions(+), 8 deletions(-) diff --git a/html/show-tournament.pl b/html/show-tournament.pl index 5a98ff8..b02033d 100755 --- a/html/show-tournament.pl +++ b/html/show-tournament.pl @@ -11,11 +11,12 @@ my $dbh = ccbs::db_connect(); my $tournament = $dbh->selectrow_hashref('SELECT * FROM tournaments NATURAL JOIN seasons NATURAL JOIN countries NATURAL JOIN machines NATURAL JOIN scoringsystems WHERE tournament=?', undef, $id); my $rankings = ccbs::db_fetch_all($dbh, 'SELECT ranking,nick,COALESCE(points,-1) AS points FROM tournamentrankings NATURAL JOIN players WHERE tournament=? ORDER BY ranking', $id); +my $songs = ccbs::db_fetch_all($dbh, 'SELECT song,title FROM machinesongs NATURAL JOIN songs WHERE machine=? ORDER BY LOWER(title)', $tournament->{'machine'}); # Swoop all the data in in a big join, then order it over to quasi-sane Perl objects. # (round -> parallel -> player -> songs -> title,chosen,score) my $scores = ccbs::db_fetch_all($dbh, - 'SELECT round,parallel,position,nick,title,chosen,score FROM roundparticipation NATURAL JOIN players NATURAL JOIN scores NATURAL LEFT JOIN songs WHERE tournament=? ORDER BY round,parallel,position,songnumber', + 'SELECT round,parallel,position,songnumber,nick,song,title,chosen,score FROM roundparticipation NATURAL JOIN players NATURAL JOIN scores NATURAL LEFT JOIN songs WHERE tournament=? ORDER BY round,parallel,position,songnumber', $id); my @rounds = (); @@ -49,16 +50,15 @@ for my $score (@$scores) { my $pl = $p->[$#$p]->{'players'}; if ($score->{'nick'} ne $player) { $player = $score->{'nick'}; - push @$pl, { nick => $player, songs => [], total => 0 }; + push @$pl, { nick => $player, songs => [], total => 0, locked => 1 }; } - push @{$pl->[$#$pl]->{'songs'}}, { - title => $score->{'title'}, - chosen => $score->{'chosen'}, - score => $score->{'score'} - }; + push @{$pl->[$#$pl]->{'songs'}}, $score; + if (defined($score->{'score'})) { $pl->[$#$pl]->{'total'} += $score->{'score'}; + } else { + $pl->[$#$pl]->{'locked'} = 0; } } @@ -83,6 +83,7 @@ ccbs::process_template('show-tournament.tmpl', $tournament->{'tournamentname'}, num_rankings => $num_rankings, rounds => \@rounds, num_rounds => $num_rounds, - num_qualified => $num_qualified + num_qualified => $num_qualified, + songs => $songs }); $dbh->disconnect; diff --git a/html/templates/show-tournament.tmpl b/html/templates/show-tournament.tmpl index c756643..9d867e7 100644 --- a/html/templates/show-tournament.tmpl +++ b/html/templates/show-tournament.tmpl @@ -91,9 +91,11 @@ [% IF p.num_songs > 1 %] Total [% END %] + [% FOR pl = p.players %] +[% IF pl.locked %] [% pl.nick %] [% FOR s = pl.songs %] @@ -106,6 +108,33 @@ [% pl.total %] [% END %] +[% ELSE %] + + [% pl.nick %] +[% FOR s = pl.songs %] + +[% IF s.chosen %] + + + +[% END %] +[% END %] +[% IF p.num_songs > 1 %] + [% pl.total %] +[% END %] + + + +[% END %] [% END %] [% END %] -- 2.39.2