From cc0b9d2a98fff4b704b557befe9002a316cd1d35 Mon Sep 17 00:00:00 2001 From: Daniel Tartavel Date: Wed, 28 Sep 2022 11:51:31 +0200 Subject: [PATCH] added display of libelle --- gestion/saisieCandidats.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/gestion/saisieCandidats.php b/gestion/saisieCandidats.php index 604b8ed..a1ca9ed 100644 --- a/gestion/saisieCandidats.php +++ b/gestion/saisieCandidats.php @@ -40,16 +40,17 @@ if (!empty($candidat)) $voteName = $db->queryVoteName($idVote); $candidatsList = $db->queryCandidatsList($idVotation, $idVote); - print('

Nouveau candidat pour le vote "' . $voteName . '" de la votation "' . $votationName . '"

'); + print('

Nouveau candidat pour le vote "' . $voteName . '" de la votation "' . $votationName . '"

' . EOLH); if (empty($candidatsList)) { print("Aucun candidats saisi pour l'instant" . EOLH); }else { - print('Liste des candidats'); + print('

Liste des candidats

'); foreach($candidatsList as $line) { - print($line["libelle"] . EOLH); + print("" . $line["candidat"] . "
"); + print(nl2br($line["libelle"]) . EOLH); } } candidatsForm($path, $idVotation, $idVote);