Vorbelegung Spielnummer entfernt.

This commit is contained in:
Jürgen Meyer
2025-11-10 15:39:11 +01:00
parent d73d081780
commit 5627282a53
@@ -9150,7 +9150,9 @@ class HTML_sportsmanager_admin
:</label> :</label>
</td> </td>
<td nowrap> <td nowrap>
<select class="uk-select uk-form-width-xsmall" style="height: 34px;" id="game_nr" type="number" name="spiel_nr" value=<?php echo $row->spiel_nr; ?>/> <?php if ($neuer_eintrag) {$row->spiel_nr = "";} ?>
<select class="uk-select uk-form-width-xsmall" style="height: 34px;" id="game_nr" type="number"
title="Spielnummer (optional)" name="spiel_nr" value=<?php $row->spiel_nr = ($neuer_eintrag == 0 ? $row->spiel_nr : ""); ?>/>
<option value=""></option> <option value=""></option>
<?php <?php
for ($i = 1; $i <= 99; $i++) for ($i = 1; $i <= 99; $i++)
@@ -10310,9 +10312,8 @@ class HTML_sportsmanager_admin
</td> </td>
</tr> </tr>
<?php <?php
$spielnummer = 0; $spielnummer = "";
for ($teamnr = 1; $teamnr < $anzahlteams; $teamnr += 2) { for ($teamnr = 1; $teamnr < $anzahlteams; $teamnr += 2) {
$spielnummer++;
?> ?>
<tr> <tr>
<td nowrap style="width: 20%; text-align: right"> <td nowrap style="width: 20%; text-align: right">
@@ -10321,7 +10322,7 @@ class HTML_sportsmanager_admin
<td nowrap> <td nowrap>
<select class="uk-select uk-form-width-xsmall" style="height: 34px;" id="game_nr" <select class="uk-select uk-form-width-xsmall" style="height: 34px;" id="game_nr"
type="number" name="spiel_nr_<?php echo $teamnr; ?>" type="number" name="spiel_nr_<?php echo $teamnr; ?>"
value=<?php echo $row->spiel_nr; ?> title="Spielnummer"/> value=<?php echo $row->spiel_nr; ?> title="Spielnummer (optional)"/>
<option value=""></option> <option value=""></option>
<?php <?php
for ($i = 1; $i <= 99; $i++) for ($i = 1; $i <= 99; $i++)