flow changes
All checks were successful
Build and push / Pulling repo on server (push) Successful in 2s

This commit is contained in:
piapassecker
2023-12-25 16:42:59 +01:00
parent 4de6df7175
commit 8543ebac7f
4 changed files with 5 additions and 3 deletions

View File

@ -84,7 +84,7 @@
<td><?= $res['bew'] ?></td>
<td><?= $res['punkte'] ?></td>
<td>
<form id="tournament_import" hx-post="/tournaments/add" hx-encoding="multipart/form-data">
<form id="tournament_import" hx-post="/tournaments/add" hx-encoding="multipart/form-data" hx-target="#main">
<input type="hidden" name="tournament_name" value="<?= $res['event'] ?>">
<input type="hidden" name="tournament_date" value="<?= date("d.m.Y", strtotime($res['date'])) ?>">
<input type="hidden" name="tournament_run" value="<?= $res['run'] ?>">

View File

@ -53,6 +53,7 @@ class Tournaments extends Page {
$t->time = $_REQUEST['tournament_time'];
$t->points = $_REQUEST['tournament_points'];
$t->speed = $_REQUEST['tournament_speed'];
var_dump($t->data);
$this->set('tournamentdata',$t->data);
$this->set('template','edit_tournament.html');