1
0
This commit is contained in:
2022-10-05 20:39:12 +02:00
parent 2f9d84e299
commit 6ff1d6b4d2
3 changed files with 3 additions and 3 deletions

42
index2.php Normal file
View File

@ -0,0 +1,42 @@
<?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>
</div>
<div class="row">
');
$votationsList = $db->queryVotationList();
print ("<table>");
foreach($votationsList as $votation)
{
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é"));
}else
{
print(_("En cours"));
}
print('</td></tr>');
}
print('</table>');
print('
</div>
</div>
</section>');
require_once './footer.html';
?>