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

Nombreuses petites corrections, ajout de texte.

Les Correspondances peuvent démarrer :)
This commit is contained in:
Yohann
2019-10-22 14:55:33 +02:00
parent 8adad9d5f7
commit 5c88ccb91a
32 changed files with 371 additions and 236 deletions

View File

@ -22,9 +22,11 @@
<th scope="col">
Date d'inscription
</th>
<th scope="col">
État de validation de l'inscription
</th>
<?php if ($problem > 0) { ?>
<th scope="col">
État de validation de l'inscription
</th>
<?php } ?>
</tr>
</thead>
<tbody>
@ -43,7 +45,9 @@
</th>
<td><?= $team->getTrigram() ?></td>
<td><?= formatDate($team->getInscriptionDate()) ?></td>
<td><?= ValidationStatus::getTranslatedName($team->getValidationStatus()) ?></td>
<?php if ($problem > 0) { ?>
<td><?= ValidationStatus::getTranslatedName($team->getValidationStatus()) ?></td>
<?php } ?>
</tr>
<?php
}
@ -60,9 +64,11 @@
<th>
Date d'inscription
</th>
<th>
État de validation de l'inscription
</th>
<?php if ($problem > 0) { ?>
<th>
État de validation de l'inscription
</th>
<?php } ?>
</tr>
</tfoot>
</table>