1
0
This repository has been archived on 2023-11-30. You can view files and clone it, but cannot push or open issues or pull requests.
dtux__serveur-vote-lalis/gestion/index2.php

43 lines
857 B
PHP
Raw Permalink Normal View History

2022-10-19 16:28:36 +02:00
<?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';
?>