From 5446f180ed50b9ba09add76bca712d7a890dca57 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Mon, 14 Feb 2005 01:04:45 +0000 Subject: [PATCH] Add a script for showing the tournaments. --- html/templates/show-tournament.tmpl | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 html/templates/show-tournament.tmpl diff --git a/html/templates/show-tournament.tmpl b/html/templates/show-tournament.tmpl new file mode 100644 index 0000000..b17b39b --- /dev/null +++ b/html/templates/show-tournament.tmpl @@ -0,0 +1,27 @@ +[%# vim:set filetype=html: %] +[% FOR r = rounds %] +

Runde [% r.round %]

+ +[% FOR p = r.parallels %] +[% IF p.parallel != 0 %] +

Gruppe [% p.parallel %]

+[% END %] + + +[% FOR pl = p.players %] + + +[% FOR s = pl.songs %] + +[% END %] + +[% END %] +
[% pl.nick %] + [% s.score %] +[% IF s.chosen %] + : [% s.title %] +[% END %] +
+[% END %] + +[% END %] -- 2.39.2