]> git.sesse.net Git - ccbs/blobdiff - html/templates/registration.tmpl
Add form (no backend yet) for registering new players.
[ccbs] / html / templates / registration.tmpl
index c2d873b6dcb70cea33da88b95ac199c2602e020e..38d2d65031e41cae528629bb93e5ac12a494c06d 100644 (file)
@@ -3,7 +3,6 @@
 
 <div>
 <form method="post" action="do-registration.pl">
 
 <div>
 <form method="post" action="do-registration.pl">
-  <input type="hidden" name="tournament" value="[% tournament.id %]" />
   <table>
     <tr>
       <th>Spiller</th>
   <table>
     <tr>
       <th>Spiller</th>
        </select>
       </td>
     </tr>
        </select>
       </td>
     </tr>
+    <tr>
+      <th colspan="2">
+        <input type="hidden" name="tournament" value="[% tournament.tournament %]" />
+        <input type="submit" value="Legg til" />
+      </th>
+    </tr>
+  </table>
+</form>
+</div>
+
+<h2>Registrering av ny spiller</h2>
+
+<div>
+<form method="post" action="do-add-player.pl">
+  <table>
+    <tr>
+      <th>Nick</th>
+      <td><input name="nick" /></td>
+    </tr>
     <tr>
       <th colspan="2">
         <input type="submit" value="Legg til" />
     <tr>
       <th colspan="2">
         <input type="submit" value="Legg til" />
 <h2>Påmeldte</h2>
 
 <div>
 <h2>Påmeldte</h2>
 
 <div>
-  <ul>
+  <table>
 [% FOR r = registered %]
 [% FOR r = registered %]
-    <li>[% r.nick %]</li>
+    <tr>
+      <td>[% r.nick %]</td>
+[% IF r.paid %]
+      <td>betalt</td>
+[% ELSE %]
+      <td class="notpaid">ikke betalt</td>
 [% END %]
 [% END %]
-  </ul>
+      <td>
+        <form method="post" action="do-set-paid.pl">
+          <p class="button">
+            <input type="hidden" name="tournament" value="[% tournament.tournament %]" />
+            <input type="hidden" name="player" value="[% r.player %]" />
+[% IF r.paid %]
+            <input type="hidden" name="paid" value="f" />
+           <input type="submit" value="Sett som ikke betalt" />
+[% ELSE %]
+            <input type="hidden" name="paid" value="t" />
+           <input type="submit" value="Sett som betalt" />
+[% END %]
+          </p>
+        </form>
+      </td>
+      <td>
+        <form method="post" action="do-unregister.pl">
+          <p class="button">
+            <input type="hidden" name="tournament" value="[% tournament.tournament %]" />
+            <input type="hidden" name="player" value="[% r.player %]" />
+           <input type="submit" value="Fjern" />
+          </p>
+        </form>
+      </td>
+    </tr>
+[% END %]
+  </table>
 </div>
 
 </div>
 
-
-