1
0
This commit is contained in:
2023-03-16 14:50:35 +01:00
parent 041a776302
commit 4839b71521
3 changed files with 50 additions and 2 deletions

View File

@ -22,12 +22,13 @@ print ("<table>");
foreach($votationsList as $votation)
{
print("<tr><td>");
print('<a href="' . $vote_url . 'vote.form.php?v=' . $votation["id"] . '">' . $votation["libelle"] . '</a></td><td>');
print('<a href="' . $vote_url . 'vote.resultat.php?v=' . $votation["id"] . '">' . $votation["libelle"] . '</a></td><td>');
if ($votation["status"] == 1)
{
print(_("Cloturé"));
}else
{
print('<a href="' . $vote_url . 'vote.form.php?v=' . $votation["id"] . '">' . $votation["libelle"] . '</a></td><td>');
print(_("En cours"));
}
print('</td></tr>');