Chris
a19cc42d69
All checks were successful
Build and push / Pulling repo on server (push) Successful in 3s
86 lines
6.7 KiB
HTML
86 lines
6.7 KiB
HTML
<nav aria-label="breadcrumb">
|
|
<ol class="breadcrumb">
|
|
<li class="breadcrumb-item">
|
|
<a href="/tournaments/event/<?= $tournament_id; ?>" hx-push-url="/tournaments/event/<?= $tournament_id; ?>" hx-get="/tournaments/event/<?= $tournament_id; ?>" hx-target="#main">
|
|
<?= escape($tournament['name']); ?>
|
|
</a>
|
|
</li>
|
|
<li class="breadcrumb-item">
|
|
<a href="/runs/overview/<?= $run_id; ?>" hx-push-url="/runs/overview/<?= $run_id; ?>" hx-get="/runs/overview/<?= $run_id; ?>" hx-target="#main">
|
|
<?= escape($result['name']); ?>
|
|
</a>
|
|
</li>
|
|
<li class="breadcrumb-item active" aria-current="page">
|
|
<?= $result_id?'Bearbeiten':'Eintragen'; ?>
|
|
</li>
|
|
</ol>
|
|
</nav>
|
|
<h2>Ergebnis
|
|
<?= $result_id?'Bearbeiten':'Eintragen'; ?>
|
|
</h2>
|
|
<form>
|
|
<input type="hidden" name="result_id" value="<?= $result_id; ?>">
|
|
<input type="hidden" name="run_id" value="<?= $run_id; ?>">
|
|
<div class="form-check form-switch">
|
|
<label class="form-check-label" for="disqualified">Disqualifiziert</label>
|
|
<input class="form-check-input" type="checkbox" id="disqualified" name="disqualified" value="1" <?= $result['disqualified']=='1'?'checked':''; ?>>
|
|
</div>
|
|
<div>
|
|
<label for="refusals">Verweigeresultgen</label>
|
|
<input type="number" value="<?= $result['refusals']; ?>" id="refusals" name="refusals" class="bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full p-2.5 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500" placeholder="Flowbite">
|
|
</div>
|
|
<div>
|
|
<label for="faults">Fehler</label>
|
|
<input type="number" value="<?= $result['faults']; ?>" id="faults" name="faults" class="bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full p-2.5 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500" placeholder="Flowbite">
|
|
</div>
|
|
<div>
|
|
<label for="time_faults">Zeitfehler</label>
|
|
<input type="number" value="<?= $result['time_faults']; ?>" id="time_faults" name="time_faults" class="bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full p-2.5 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500" placeholder="Flowbite">
|
|
</div>
|
|
<div>
|
|
<label for="time">Zeit</label>
|
|
<input type="number" value="<?= $result['time']; ?>" id="time" name="time" class="bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full p-2.5 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500" placeholder="Flowbite">
|
|
</div>
|
|
<div>
|
|
<label for="penalties">Gesamtfehler</label>
|
|
<input type="number" value="<?= $result['penalties']; ?>" id="penalties" name="penalties" class="bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full p-2.5 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500" placeholder="Flowbite">
|
|
</div>
|
|
<div>
|
|
<label for="time_speed">m/Sek</label>
|
|
<input type="number" value="<?= $result['time_speed']; ?>" id="time_speed" name="time_speed" class="bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full p-2.5 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500" placeholder="Flowbite">
|
|
</div>
|
|
<div>
|
|
<label for="bewertung">Bewertung</label>
|
|
<select id="bewertung" name="bewertung" class="bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full p-2.5 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500">
|
|
<option value="V" <?=$result['bewertung']=='V' ?'selected':''; ?>>V</option>
|
|
<option value="SG" <?=$result['bewertung']=='SG' ?'selected':''; ?>>SG</option>
|
|
<option value="G" <?=$result['bewertung']=='G' ?'selected':''; ?>>G</option>
|
|
<option Galue="B" <?=$result['bewertung']=='B' ?'selected':''; ?>>B</option>
|
|
</select>
|
|
</div>
|
|
<div>
|
|
<label for="points">Punkte</label>
|
|
<input type="number" value="<?= $result['points']; ?>" id="points" name="points" class="bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full p-2.5 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500" placeholder="Flowbite">
|
|
</div>
|
|
<div>
|
|
<label for="rank">Platz</label>
|
|
<input type="number" value="<?= $result['rank']; ?>" id="rank" name="rank" class="bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full p-2.5 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500" placeholder="Flowbite">
|
|
</div>
|
|
<div>
|
|
<label for="uploads">Uploads</label>
|
|
<input type="file" accept="image/png, image/jpeg, image/gif" id="uploads" name="uploads">
|
|
</div>
|
|
<div>
|
|
<label for="video-url">Video Url</label>
|
|
<input type="text" value="<?= $result['video-url']; ?>" class="form-control" id="video-url" aria-describedby="basic-addon3">
|
|
</div>
|
|
<div>
|
|
<label for="memo">Memo</label>
|
|
<textarea value="<?= $result['memo']; ?>" id="memo" name="memo" class="bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full p-2.5 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500" placeholder="Deine Gedankengänge"></textarea>
|
|
</div>
|
|
<div class="form-check form-switch">
|
|
<label class="form-check-label" for="public">Daten im Lauf veröffentlichen</label>
|
|
<input class="form-check-input" type="checkbox" id="public" name="public" value="1" <?= $result['public']!='0'?'checked':''; ?>>
|
|
</div>
|
|
<button type="submit" name="submit" value="true" class="btn btn-primary">Speichern</button>
|
|
</form> |