Update form class in tables_vue.php, header.php, accueil_vue.php, parties_controleur.php, modele.php, statistiques_controleur.php, and parties_vue.php

This commit is contained in:
2024-04-18 23:41:03 +02:00
parent 6bbaf30f26
commit 922e7ecbae
12 changed files with 295 additions and 69 deletions

View File

@@ -2,6 +2,10 @@
$message = "";
/***********************************/
/* Récupération des parties en cours */
/***********************************/
$partiestotal = get_parties_venir_cours();
if ($partiestotal == null || count($partiestotal) == 0) {
@@ -16,6 +20,10 @@ if ($partiestotal == null || count($partiestotal) == 0) {
$messageterminee = "";
/***********************************/
/* Récupération des parties terminées */
/***********************************/
$partiesterm = get_parties_terminees();
if ($partiesterm == null || count($partiesterm) == 0) {