]> git.sesse.net Git - ccbs/commitdiff
Add an option for un-registering people.
authorSteinar H. Gunderson <sesse@samfundet.no>
Mon, 14 Feb 2005 18:22:30 +0000 (18:22 +0000)
committerSteinar H. Gunderson <sesse@samfundet.no>
Mon, 14 Feb 2005 18:22:30 +0000 (18:22 +0000)
html/do-unregister.pl [new file with mode: 0755]
html/templates/registration.tmpl

diff --git a/html/do-unregister.pl b/html/do-unregister.pl
new file mode 100755 (executable)
index 0000000..3751e30
--- /dev/null
@@ -0,0 +1,18 @@
+#! /usr/bin/perl
+
+use ccbs;
+use strict;
+use warnings;
+
+my $dbh = ccbs::db_connect();
+my $cgi = new CGI;
+
+my $tournament = $cgi->param('tournament');
+my $player = $cgi->param('player');
+
+$dbh->do('DELETE FROM tournamentparticipation WHERE tournament=? AND player=?',
+       undef, $tournament, $player);
+
+ccbs::print_see_other('registration.pl?id=' . $tournament);
+
+$dbh->disconnect;
index 539ccb679697fd9862df9fe3daac23a805f7ccb5..5a2239f9ad944c2e8026454cdd22806f5dd81aee 100644 (file)
           </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>