63 líneas
2.1 KiB
PHP
63 líneas
2.1 KiB
PHP
<?= $this->extend('templates/baseAdmin') ?>
|
|
|
|
<?= $this->section('content') ?>
|
|
|
|
<!-- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/5.1.3/css/bootstrap.min.css"> -->
|
|
<script src="https://code.jquery.com/jquery-3.5.1.js"></script>
|
|
<script src="https://cdn.datatables.net/1.12.1/js/jquery.dataTables.min.js"></script>
|
|
<script src="https://cdn.datatables.net/1.12.1/js/dataTables.bootstrap5.min.js"></script>
|
|
|
|
|
|
<div class="card">
|
|
<div class="card-body">
|
|
|
|
<table id="table-solicitudes" class="table table-bordered table-striped">
|
|
<thead>
|
|
<th>Nombre</th>
|
|
<th>Email</th>
|
|
<th>Revisar</th>
|
|
</thead>
|
|
<tbody>
|
|
|
|
<?php foreach ($solicitudes as $solicitud) : ?>
|
|
<tr>
|
|
<td><?= $solicitud['nombre'] . ' ' . $solicitud['apaterno'] . ' ' . $solicitud['amaterno'] ?></td>
|
|
<td><?= $solicitud['email'] ?></td>
|
|
<td>
|
|
<a href="<?= route_to('admin_solicitud_revisar', $solicitud['id']) ?>" class="btn btn-info ">
|
|
<i class="nav-icon fas fa-user-check"></i>
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
<?php endforeach ?>
|
|
|
|
|
|
</tbody>
|
|
</table>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<script>
|
|
document.addEventListener('DOMContentLoaded', function() {
|
|
let table = new DataTable('#table-solicitudes', {
|
|
'searching': true,
|
|
'ordering': true,
|
|
'language': {
|
|
"lengthMenu": "Mostrar _MENU_ registros",
|
|
"info": "Página: _PAGE_ / _PAGES_",
|
|
"zeroRecords": "No se encontraron registros",
|
|
"paginate": {
|
|
"first": "Inicio",
|
|
"last": "Fin",
|
|
"next": ">",
|
|
"previous": "<"
|
|
},
|
|
'search': 'Buscar:',
|
|
},
|
|
'order': [],
|
|
});
|
|
});
|
|
</script>
|
|
|
|
<?= $this->endSection() ?>
|