1
0

added display of libelle

This commit is contained in:
Daniel Tartavel 2022-09-28 11:51:31 +02:00
parent 07a7fa274a
commit cc0b9d2a98

View File

@ -40,16 +40,17 @@ if (!empty($candidat))
$voteName = $db->queryVoteName($idVote); $voteName = $db->queryVoteName($idVote);
$candidatsList = $db->queryCandidatsList($idVotation, $idVote); $candidatsList = $db->queryCandidatsList($idVotation, $idVote);
print('<h3>Nouveau candidat pour le vote "' . $voteName . '" de la votation "' . $votationName . '"</h3>'); print('<h3>Nouveau candidat pour le vote "' . $voteName . '" de la votation "' . $votationName . '"</h3>' . EOLH);
if (empty($candidatsList)) if (empty($candidatsList))
{ {
print("Aucun candidats saisi pour l'instant" . EOLH); print("Aucun candidats saisi pour l'instant" . EOLH);
}else }else
{ {
print('Liste des candidats'); print('<h4>Liste des candidats</h4>');
foreach($candidatsList as $line) foreach($candidatsList as $line)
{ {
print($line["libelle"] . EOLH); print("<b><u>" . $line["candidat"] . "</u></b><br>");
print(nl2br($line["libelle"]) . EOLH);
} }
} }
candidatsForm($path, $idVotation, $idVote); candidatsForm($path, $idVotation, $idVote);