1
0
This commit is contained in:
2022-09-29 13:31:30 +02:00
parent 0058078d8d
commit 901157b9b6
349 changed files with 9 additions and 36477 deletions

View File

@ -20,7 +20,15 @@ print(' <br><br>
$votationsList = $db->queryVotationList();
foreach($votationsList as $votation)
{
print'<a href="' . $vote_url . '"saisieVotes.php?idVotation=' . $votation["id"] . '>' . $votation["libelle"] . '</a>';
print('<a href="' . $vote_url . '"gestion/saisieVotes.php?idVotation=' . $votation["id"] . '>' . $votation["libelle"] . '</a>');
if ($votation["status"] == 1)
{
print(_("Cloturé"));
}else
{
print(_("En cours"));
}
print('<br>');
}
print(' </ul>
</div>