30 lines
1.0 KiB
PHP
Executable File
30 lines
1.0 KiB
PHP
Executable File
|
|
<table class="table table-striped table-bordered table-hover table-condensed table-responsive" style="font-size:10pt;">
|
|
<tbody>
|
|
<tr valign="top">
|
|
<th style='text-align:center'> <?= _("Historique réactivation IP") ?> </th>
|
|
<td align='center'> <?= $ipConnexion ?> </td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
<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"> <?= _("Responsable") ?> </th>
|
|
<th style="text-align:center"> <?= _("Motif") ?> </th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php foreach ($logconnexions as $logconnexion):
|
|
?>
|
|
<tr valign="top">
|
|
<td align='center'> <?= dateheureLang($this->nettoyer($logconnexion['dateSysteme'])) ?> </td>
|
|
<td align='center'> <?= $this->nettoyer($logconnexion['codeUtilisateur']) ?> </td>
|
|
<td align='center'> <?= $this->nettoyer($logconnexion['motif']) ?> </td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|