]> git.sesse.net Git - ccbs/blob - html/templates/show-tournament.tmpl
Add a script for showing the tournaments.
[ccbs] / html / templates / show-tournament.tmpl
1 [%# vim:set filetype=html: %]
2 [% FOR r = rounds %]
3   <h2>Runde [% r.round %]</h2>
4
5 [% FOR p = r.parallels %]
6 [% IF p.parallel != 0 %]
7   <h3>Gruppe [% p.parallel %]</h3>
8 [% END %]
9
10   <table>
11 [% FOR pl = p.players %]
12     <tr>
13       <th>[% pl.nick %]</th>
14 [% FOR s = pl.songs %]
15       <td>
16         [% s.score %]
17 [% IF s.chosen %]
18         : [% s.title %]
19 [% END %]
20 </td>
21 [% END %]
22     </tr>
23 [% END %]
24   </table>
25 [% END %]
26   
27 [% END %]