Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.33 KB | None | 0 0
  1. <script type="text/javascript" class="init">
  2. $(document).ready(function () {
  3. $('#tBitacora').DataTable({
  4. "paging": true,
  5. "lengthMenu": [[5, 25, 50, 75, 100, 500, -1], [5, 25, 50, 75, 100, 500, "Todos"]],
  6. "iDisplayLength": 25
  7. });
  8. });
  9. </script>
  10.  
  11. <h2 class="page-header"> Bitácora </h2>
  12.  
  13. <table class="display table-striped" id="tBitacora" >
  14. <thead>
  15. <tr>
  16. <th class="col-md-2" style="color: #337ab7">Fecha / Hora</th>
  17. <th class="col-md-2" style="color: #337ab7">Operación</th>
  18. <th class="col-md-1" style="color: #337ab7">DNI</th>
  19. <th class="col-md-4" style="color: #337ab7">Datos</th>
  20. <th class="col-md-2" style="color: #337ab7">Usuario</th>
  21. </tr>
  22. </thead>
  23. <tfoot>
  24. <tr>
  25. <th class="col-md-2" style="color: #337ab7">Fecha / Hora</th>
  26. <th class="col-md-2" style="color: #337ab7">Operación</th>
  27. <th class="col-md-1" style="color: #337ab7">DNI</th>
  28. <th class="col-md-4" style="color: #337ab7">Datos</th>
  29. <th class="col-md-2" style="color: #337ab7">Usuario</th>
  30. </tr>
  31. </tfoot>
  32. <tbody>
  33. <c:forEach items="${registros}" var="e" >
  34. <tr>
  35. <td>
  36. ${e.fechahora}
  37. </td>
  38. <td>
  39. ${e.operacion.descripOp}
  40. <c:set var="tipoOp" value="${e.operacion.id}" />
  41. </td>
  42. <c:if test="${tipoOp < 4}">
  43. <td>
  44. ${e.dni}
  45. </td>
  46. <td>
  47. ${e.datos}
  48. </td>
  49. </c:if>
  50. <c:if test="${tipoOp > 3}">
  51. <td colspan="2">
  52. <c:if test="${tipoOp == 4}">
  53. Usuario nuevo:&nbsp;
  54. </c:if>
  55. <c:if test="${tipoOp == 5}">
  56. Usuario modific:&nbsp;
  57. </c:if>
  58. ${e.operAuxil}
  59. </td>
  60. </c:if>
  61. <td>
  62. ${e.usuario.nombre}
  63. </td>
  64. </tr>
  65. </c:forEach>
  66. </tbody>
  67. </table>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement