40 lines
1.3 KiB
PHP
Executable File
40 lines
1.3 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"> <?= _("Login") ?> </th>
|
|
<th style='text-align:center'> <?= _("IP") ?> </th>
|
|
<th style='text-align:center'> <?= _("Application") ?> </th>
|
|
<th style='text-align:center'> <?= _("Vue") ?> </th>
|
|
<th style='text-align:center'> <?= _("Début") ?> </th>
|
|
<th style='text-align:center'> <?= _("Fin") ?> </th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr valign="top">
|
|
<td align='center'> <?= $login ?> </td>
|
|
<td align='center'> <?= $ipConnexion ?> </td>
|
|
<td align='center'> <?= $application ?> </td>
|
|
<td align='center'> <?= $vue ?> </td>
|
|
<td align='center'> <?= $debut ?> </td>
|
|
<td align='center'> <?= $fin ?> </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 visites") ?> </th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php foreach ($logconnexions as $logconnexion):
|
|
?>
|
|
<tr valign="top">
|
|
<td align='center'> <?= dateheureLang($this->nettoyer($logconnexion['heureConnexion'])) ?> </td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|