') . 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 . '
');
print('Liste des candidats');
foreach($candidatsList as $line)
{
print($line["libelle"] . EOLH);
}
candidatsForm($path, $idVotation, $idVote);
}
print('