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.
 
 
 
 
 

39 righe
1.4 KiB

<?
if (isset($this) && is_a($this,"zoomMtg") && !empty($info)) {
?>
<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><?= date("d/m/Y H:i:s",strtotime($info["start_time"])); ?></strong>
</div>
<div class="col text-center">
<span class="fa fa-flag-checkered"></span> <?= __("Fine") ?><br><strong><?= date("d/m/Y H:i:s",strtotime($info["end_time"])); ?></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><?= $info["participants_count"] ?></strong>
</div>
</div>
</div>
<?
if (!empty($info["participants"])) {
?>
<table class="table table-striped table-hover">
<thead>
<tr>
<th><?= __("Elenco partecipanti") ?></th>
</tr>
</thead>
<tbody>
<? foreach($info["participants"] AS $partecipante) { ?>
<tr>
<td><?= $partecipante["name"] ?></td>
</tr>
<? } ?>
</tbody>
</table>
<?
}
}
?>