1
0
mirror of https://gitlab.com/animath/si/plateforme-corres2math.git synced 2025-06-24 17:00:31 +02:00

Adaptation de la plateforme aux besoins des correspondances (en cours)

This commit is contained in:
galaxyoyo
2019-09-11 01:17:05 +02:00
parent e908ad1923
commit 07e7b94f5c
18 changed files with 65 additions and 520 deletions

View File

@ -31,14 +31,13 @@ if (isset($new_team) && !$has_error) { ?>
</tr>
<tr>
<td>
<label for="tournament_id">Tournoi :</label>
<label for="problem">Problème :</label>
</td>
<td>
<select style="width: 100%;" id="tournament_id" name="tournament_id">
<select style="width: 100%;" id="problem" name="problem">
<?php
while (($data = $tournaments_response->fetch()) !== FALSE) {
echo "<option value=\"" . $data["id"] . "\">" . $data["name"] . "</option>\n";
}
for ($i = 1; $i <= 4; ++$i)
echo "<option value='$i'>$i</option>";
?>
</select>
</td>