Vinculaciones multi-agencia
This commit is contained in:
@@ -41,30 +41,30 @@
|
||||
<div class="card p-3 shadow-sm">
|
||||
<div class="table-responsive">
|
||||
<table class="table table-striped" id="tabla-locaciones">
|
||||
<thead class="table-dark">
|
||||
<tr>
|
||||
<th>ID País</th>
|
||||
<th>País</th>
|
||||
<th>ISO3</th>
|
||||
<th>ID Estado</th>
|
||||
<th>Estado</th>
|
||||
<th>ID Ciudad</th>
|
||||
<th>Ciudad</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<?php foreach ($locaciones as $loc): ?>
|
||||
<tr>
|
||||
<td><?= htmlspecialchars($loc['id_pais']) ?></td>
|
||||
<td><?= htmlspecialchars($loc['nombre_pais']) ?></td>
|
||||
<td><?= htmlspecialchars($loc['iso3']) ?></td>
|
||||
<td><?= htmlspecialchars($loc['id_estado']) ?></td>
|
||||
<td><?= htmlspecialchars($loc['nombre_estado']) ?></td>
|
||||
<td><?= htmlspecialchars($loc['id_ciudad']) ?></td>
|
||||
<td><?= htmlspecialchars($loc['nombre_ciudad']) ?></td>
|
||||
</tr>
|
||||
<?php endforeach; ?>
|
||||
</tbody>
|
||||
<thead class="table-dark">
|
||||
<tr>
|
||||
<th>ID País</th>
|
||||
<th>País</th>
|
||||
<th>ISO3</th>
|
||||
<th>ID Estado</th>
|
||||
<th>Estado</th>
|
||||
<th>ID Ciudad</th>
|
||||
<th>Ciudad</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<?php foreach ($locaciones as $loc): ?>
|
||||
<tr>
|
||||
<td><?= htmlspecialchars($loc['id_pais']) ?></td>
|
||||
<td><?= htmlspecialchars($loc['nombre_pais']) ?></td>
|
||||
<td><?= htmlspecialchars($loc['iso3']) ?></td>
|
||||
<td><?= htmlspecialchars($loc['id_estado']) ?></td>
|
||||
<td><?= htmlspecialchars($loc['nombre_estado']) ?></td>
|
||||
<td><?= htmlspecialchars($loc['id_ciudad']) ?></td>
|
||||
<td><?= htmlspecialchars($loc['nombre_ciudad']) ?></td>
|
||||
</tr>
|
||||
<?php endforeach; ?>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user