debug
This commit is contained in:
@ -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>
|
||||
|
Reference in New Issue
Block a user