You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

70 lines
2.4KB

  1. <?= $this->extend('templates/baseAdmin') ?>
  2. <?= $this->section('content') ?>
  3. <script src="https://code.jquery.com/jquery-3.5.1.js"></script>
  4. <script src="https://cdn.datatables.net/1.12.1/js/jquery.dataTables.min.js"></script>
  5. <script src="https://cdn.datatables.net/1.12.1/js/dataTables.bootstrap5.min.js"></script>
  6. <div class="card">
  7. <div class="card-body">
  8. <table id="table-solicitudes" class="table table-bordered table-striped">
  9. <thead>
  10. <th>Encuesta</th>
  11. <th>Prestador</th>
  12. <th>Fecha</th>
  13. <th>Respuestas</th>
  14. </thead>
  15. <tbody>
  16. <?php foreach ($respuestas as $respuesta) : ?>
  17. <tr>
  18. <td><?= $respuesta['title'] ?></td>
  19. <td><?= $respuesta['nombre'] . ' ' . $respuesta['apaterno'] . ' ' . $respuesta['amaterno'] ?></td>
  20. <td><?= $respuesta['created_at'] ?></td>
  21. <td>
  22. <a href="<?= route_to('admin_respuesta', $respuesta['survey_id'], $respuesta['user_id']) ?>" class="btn btn-info">Ver respuestas</a>
  23. </td>
  24. </tr>
  25. <?php endforeach ?>
  26. </tbody>
  27. </table>
  28. </div>
  29. </div>
  30. <script>
  31. document.addEventListener('DOMContentLoaded', function() {
  32. let table = new DataTable('#table-solicitudes', {
  33. 'searching': true,
  34. 'ordering': true,
  35. 'language': {
  36. "decimal": "",
  37. "emptyTable": "No hay información",
  38. "info": "Mostrando _START_ a _END_ de _TOTAL_ registros",
  39. "infoEmpty": "Mostrando 0 to 0 of 0 registros",
  40. "infoFiltered": "(Filtrado de _MAX_ total registros)",
  41. "infoPostFix": "",
  42. "thousands": ",",
  43. "lengthMenu": "Mostrar _MENU_ registros",
  44. "loadingRecords": "Cargando...",
  45. "processing": "Procesando...",
  46. "search": "Buscar:",
  47. "zeroRecords": "No se encontraron resultados",
  48. "paginate": {
  49. "first": "Primero",
  50. "last": "Ultimo",
  51. "next": "Siguiente",
  52. "previous": "Anterior"
  53. }
  54. },
  55. 'order': [],
  56. });
  57. });
  58. </script>
  59. <?= $this->endSection() ?>