1
0
This commit is contained in:
2022-10-19 16:28:36 +02:00
parent c4e1568207
commit 1217276932
3 changed files with 55 additions and 4 deletions

View File

@ -1,5 +1,5 @@
<?php
require_once 'session_init.php';
require_once '../session_init.php';
require_once 'config.inc.php';
require_once 'db.class.php';
require_once 'entete.php';
@ -22,7 +22,7 @@ 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>');
print('<a href="' . $vote_url . 'vote.form.php?v=' . $votation["id"] . '">' . $votation["libelle"] . '</a></td><td>');
if ($votation["status"] == 1)
{
print(_("Cloturé"));
@ -38,5 +38,5 @@ print('
</div>
</section>');
require_once './footer.html';
require_once 'footer.html';
?>