]> git.sesse.net Git - ccbs/blob - html/templates/registration.tmpl
6bbb528114764aef1714b3160d6ea0cad1780962
[ccbs] / html / templates / registration.tmpl
1 [%# vim:set filetype=html: %]
2 <h2>PĆ„meldte</h2>
3
4 <div>
5   <ul>
6 [% FOR r = registered %]
7     <li>[% r.nick %]</li>
8 [% END %]
9   </ul>
10 </div>
11
12 <h2>PĆ„melding</h2>
13
14 <div>
15 <form method="post" action="do-registration.pl">
16   <input type="hidden" name="tournament" value="[% tournament.id %]" />
17   <table>
18     <tr>
19       <th>Spiller</th>
20       <td>
21         <select name="player">
22 [% FOR a = available %]
23           <option value="[% a.id %]">[% a.nick %]</option>
24 [% END %]
25         </select>
26       </td>
27     </tr>
28     <tr>
29       <th>Betalt</th>
30       <td>
31         <select name="paid">
32           <option value="f">Nei</option>
33           <option value="t">Ja</option>
34         </select>
35       </td>
36     </tr>
37     <tr>
38       <th colspan="2">
39         <input type="submit" value="Legg til" />
40       </th>
41     </tr>
42   </table>
43 </form>
44 </div>