debug
This commit is contained in:
parent
901157b9b6
commit
1086b1f2e0
@ -18,9 +18,11 @@ print(' <br><br>
|
||||
<div class="row">
|
||||
<ul>');
|
||||
$votationsList = $db->queryVotationList();
|
||||
print ("<table>");
|
||||
foreach($votationsList as $votation)
|
||||
{
|
||||
print('<a href="' . $vote_url . '"gestion/saisieVotes.php?idVotation=' . $votation["id"] . '>' . $votation["libelle"] . '</a>');
|
||||
print("<tr><td>");
|
||||
print('<a href="' . $vote_url . 'gestion/saisieVotes.php?idVotation=' . $votation["id"] . '">' . $votation["libelle"] . '</a></td><td>');
|
||||
if ($votation["status"] == 1)
|
||||
{
|
||||
print(_("Cloturé"));
|
||||
@ -28,7 +30,7 @@ foreach($votationsList as $votation)
|
||||
{
|
||||
print(_("En cours"));
|
||||
}
|
||||
print('<br>');
|
||||
print('</td></tr><br>');
|
||||
}
|
||||
print(' </ul>
|
||||
</div>
|
||||
|
Reference in New Issue
Block a user