<?php
require_once '../session_init.php';
require_once 'config.inc.php';
require_once 'db.class.php';
require_once 'entete.php';
$db = new db();
print(' <br><br>
<!-- lalis Grid Section -->
<section id="content">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h3>Gestion des votes</h3>
</div>
');
$votationsList = $db->queryVotationList();
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>');
if ($votation["status"] == 1)
print(_("Cloturé"));
}else
print(_("En cours"));
}
print('</td></tr>');
print('</table>');
print('
</section>');
require_once 'footer.html';
?>