') . EOL;
print('
');
if (empty($idVotation))
{
choixVotation($path, 0, false);
}elseif (empty($idVote))
{
choixVote($path, $idVotation);
}else
{
$votationName = $db->queryVotationName($idVotation);
$voteName = $db->queryVoteName($idVote);
$candidatsList = $db->queryCandidatsList($idVotation, $idVote);
print('
Nouveau candidat pour le vote "' . $voteName . '" de la votation "' . $votationName . '"
');
if (empty($candidatsList))
{
print("Aucun candidats saisi pour l'instant" . EOLH);
}else
{
print('Liste des candidats');
foreach($candidatsList as $line)
{
print($line["libelle"] . EOLH);
}
}
candidatsForm($path, $idVotation, $idVote);
}
print('