]> git.sesse.net Git - ccbs/commitdiff
Added a minimal list over people registered at a tournament.
authorSteinar H. Gunderson <sesse@samfundet.no>
Mon, 14 Feb 2005 15:04:00 +0000 (15:04 +0000)
committerSteinar H. Gunderson <sesse@samfundet.no>
Mon, 14 Feb 2005 15:04:00 +0000 (15:04 +0000)
html/registration.pl [new file with mode: 0755]
html/templates/registration.tmpl [new file with mode: 0644]

diff --git a/html/registration.pl b/html/registration.pl
new file mode 100755 (executable)
index 0000000..6d47364
--- /dev/null
@@ -0,0 +1,19 @@
+#! /usr/bin/perl
+
+use ccbs;
+use strict;
+use warnings;
+
+my $cgi = new CGI;
+my $id = $cgi->param('id');
+
+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 $people = ccbs::db_fetch_all($dbh, 'SELECT * FROM tournamentparticipation NATURAL JOIN players WHERE tournament=?', $id);
+
+ccbs::print_header();
+ccbs::process_template('registration.tmpl', $tournament->{'tournamentname'}, {
+       people => $people
+});
+$dbh->disconnect;
diff --git a/html/templates/registration.tmpl b/html/templates/registration.tmpl
new file mode 100644 (file)
index 0000000..74f1167
--- /dev/null
@@ -0,0 +1,10 @@
+[%# vim:set filetype=html: %]
+<h2>PĆ„meldte</h2>
+
+<div>
+  <ul>
+[% FOR p = people %]
+    <li>[% p.nick %]</li>
+[% END %]
+  </ul>
+</div>