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.
 
 
 
 
 

34 righe
884 B

<?
if (!empty($logs)) {
?>
<div class="table-responsive">
<table class="table table-hover table-striped">
<thead>
<tr>
<th><?= __("Data e ora") ?></th>
<th><?= __("Azione") ?></th>
<th><?= __("Utente") ?></th>
<th><?= __("Ruolo") ?></th>
<th><?= __("Indirizzo IP") ?></th>
</tr>
</thead>
<tbody>
<?
foreach($logs AS $log) {
?>
<tr>
<td><?= mysql2datetime($log["timestamp"]) ?></td>
<td><?= __($log["azione"]); ?></td>
<td><?= $log["nominativo"] ?></td>
<td><?= __($log["ruolo"]) ?></td>
<td><?= $log["ip"] ?></td>
</tr>
<?
}
?>
</tbody>
</table>
</div>
<?
}
?>