mirror of
https://gitlab.com/animath/si/plateforme-corres2math.git
synced 2025-06-25 19:37:23 +02:00
Étape 0 : inscription des équipes (en cours)
This commit is contained in:
32
server_files/views/problemes.php
Normal file
32
server_files/views/problemes.php
Normal file
@ -0,0 +1,32 @@
|
||||
<?php require_once "header.php" ?>
|
||||
|
||||
<h2>Liste des problèmes</h2>
|
||||
|
||||
<table style="border: 1px solid black; width: 100%">
|
||||
<thead style="border: 1px solid black">
|
||||
<tr>
|
||||
<th style="border: 1px solid black; text-align: center">Problème</th>
|
||||
<th style="border: 1px solid black; text-align: center">Inscription avant le</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody style="border: 1px solid black">
|
||||
<?php
|
||||
for ($i = 1; $i <= 4; ++$i) {
|
||||
?>
|
||||
<tr style="border: 1px solid black">
|
||||
<td style="border: 1px solid black; text-align: center"><a href="<?= $URL_BASE ?>/probleme/<?= $i ?>"><?= $i ?></a></td>
|
||||
<td style="border: 1px solid black; text-align: center"><?= formatDate($CONFIG->getInscriptionDate(), true) ?></td>
|
||||
</tr>
|
||||
<?php
|
||||
}
|
||||
?>
|
||||
</tbody>
|
||||
<tfoot style="border: 1px solid black">
|
||||
<tr>
|
||||
<th style="border: 1px solid black; text-align: center">Problème</th>
|
||||
<th style="border: 1px solid black; text-align: center">Inscription avant le</th>
|
||||
</tr>
|
||||
</tfoot>
|
||||
</table>
|
||||
|
||||
<?php require_once "footer.php" ?>
|
Reference in New Issue
Block a user