gestione gare pubbliche
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 

41 righe
1.4 KiB

<?
if (isset($this) && is_a($this,"goToMtg") && !empty($info)) {
$first = $info[0];
?>
<h1><?= $info["topic"] ?></h1>
<div class="card card-body">
<div class="d-flex">
<div class="col text-center">
<span class="fa fa-flag"></span> <?= __("Inizio") ?><br><strong><?= FromUTCtoLocale($first["startTime"]); ?></strong>
</div>
<div class="col text-center">
<span class="fa fa-flag-checkered"></span> <?= __("Fine") ?><br><strong><?= FromUTCtoLocale($first["endTime"]); ?></strong>
</div>
<? /* <div class="col text-center"><span class="fa fa-clock-o"></span> Durata: <strong><?= $info["total_minutes"] ?> minuti</strong></div */ ?>
<div class="col text-center">
<span class="fa fa-user"></span> <?= __("Partecipanti") ?><br><strong><?= count($info) ?></strong>
</div>
</div>
</div>
<table class="table table-striped table-hover">
<thead>
<tr>
<th><?= __("Partecipante") ?></th>
<th><?= __("Inizio") ?></th>
<th><?= __("Fine") ?></th>
</tr>
</thead>
<tbody>
<? foreach($info AS $partecipante) { ?>
<tr>
<td><?= $partecipante["attendeeName"] ?></td>
<td><?= FromUTCtoLocale($partecipante["joinTime"]) ?></td>
<td><?= FromUTCtoLocale($partecipante["leaveTime"]) ?></td>
</tr>
<? } ?>
</tbody>
</table>
<?
}
?>