Log
This commit is contained in:
15
logs.php
15
logs.php
@@ -42,6 +42,7 @@
|
|||||||
<th scope="col" class="text-center align-middle px-2">Navegador</th>
|
<th scope="col" class="text-center align-middle px-2">Navegador</th>
|
||||||
<th scope="col" class="text-center align-middle px-2">Información</th>
|
<th scope="col" class="text-center align-middle px-2">Información</th>
|
||||||
<th scope="col" class="text-center align-middle px-2">Detalle</th>
|
<th scope="col" class="text-center align-middle px-2">Detalle</th>
|
||||||
|
<th scope="col" class="text-center align-middle px-2">Horario web</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
@@ -94,6 +95,20 @@
|
|||||||
<td class="text-center align-middle px-2">
|
<td class="text-center align-middle px-2">
|
||||||
<?= $log['detalle'] ?>
|
<?= $log['detalle'] ?>
|
||||||
</td>
|
</td>
|
||||||
|
<td class="text-center align-middle px-2">
|
||||||
|
<?
|
||||||
|
if ($log['horario_web'] == null) {
|
||||||
|
echo "N/A";
|
||||||
|
} else {
|
||||||
|
?>
|
||||||
|
<button type="button" class="btn btn-info" data-toggle="modal" data-target="#horarioModal"
|
||||||
|
data-horario='<?= json_encode($log['horario_web'], JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES) ?>'>
|
||||||
|
Horario
|
||||||
|
</button>
|
||||||
|
<?
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<?
|
<?
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user