26 lines
1.0 KiB
PHP
Executable File
26 lines
1.0 KiB
PHP
Executable File
|
|
<table class="table table-striped table-bordered table-hover table-condensed table-responsive" style="font-size:10pt;">
|
|
<thead>
|
|
<tr>
|
|
<th style="text-align:center"> <?= _("Date") ?> </th>
|
|
<th style='text-align:center'> <?= _("IP") ?> </th>
|
|
<th style="text-align:center"> <?= _("Responsable") ?> </th>
|
|
<th style="text-align:center"> <?= _("Motif") ?> </th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php foreach ($logconnexions as $logconnexion):
|
|
$ipConnexion = $logconnexion['ipConnexion'];
|
|
?>
|
|
<tr valign="top">
|
|
<td align='center'> <?= dateheureLang($this->nettoyer($logconnexion['dateSysteme'])) ?> </td>
|
|
<td class="text-center">
|
|
<button style='font-size:8pt;' type="button" onclick="javascript:trouve_coordonnees_geo_ip('<?= $ipConnexion; ?>');"> <?= $ipConnexion; ?> </button>
|
|
</td>
|
|
<td align='center'> <?= $this->nettoyer($logconnexion['codeUtilisateur']) ?> </td>
|
|
<td align='center'> <?= $this->nettoyer($logconnexion['motif']) ?> </td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|