Commit 0818a192f6adaf7cefa735297d41e4c1c02342eb
Exists in
master
Merge branch 'master' into 'master'
Master See merge request !6
Showing
1 changed file
Show diff stats
src/views/foca-crear-login.html
| 1 | <div class="row"> | 1 | <div class="row"> |
| 2 | <foca-cabecera-facturador | 2 | <foca-cabecera-facturador |
| 3 | titulo="'Administración de Ingreso'" | 3 | titulo="'Administración de Ingreso'" |
| 4 | fecha="now" | 4 | fecha="now" |
| 5 | class="mb-0 col-12" | 5 | class="mb-0 col-12" |
| 6 | ></foca-cabecera-facturador> | 6 | ></foca-cabecera-facturador> |
| 7 | </div> | 7 | </div> |
| 8 | <div class="row"> | 8 | <div class="row"> |
| 9 | <div class="col-12 col-md-10 p-0 mt-4 border border-white rounded"> | 9 | <div class="col-12 col-md-10 p-0 mt-4 border border-white rounded"> |
| 10 | <div class="row px-5 py-2 botonera-secundaria"> | 10 | <div class="row px-5 py-2 botonera-secundaria"> |
| 11 | <div class="col-12"> | 11 | <div class="col-12"> |
| 12 | <foca-botonera-facturador botones="botonera" max="6" class="row"></foca-botonera-facturador> | 12 | <foca-botonera-facturador botones="botonera" max="6" class="row"></foca-botonera-facturador> |
| 13 | </div> | 13 | </div> |
| 14 | </div> | 14 | </div> |
| 15 | <table class="table table-default table-hover table-sm table-abm table-striped mb-0"> | 15 | <table class="table table-default table-hover table-sm table-abm table-striped mb-0"> |
| 16 | <thead> | 16 | <thead> |
| 17 | <tr> | 17 | <tr> |
| 18 | <th>Código</th> | 18 | <th>Código</th> |
| 19 | <th>Nombre</th> | 19 | <th>Nombre</th> |
| 20 | <th>DNI</th> | 20 | <th>DNI</th> |
| 21 | <th>Teléfono</th> | 21 | <th>Teléfono</th> |
| 22 | <th class="text-center"> | 22 | <th class="text-center"> |
| 23 | </th> | 23 | </th> |
| 24 | </tr> | 24 | </tr> |
| 25 | </thead> | 25 | </thead> |
| 26 | <tbody> | 26 | <tbody> |
| 27 | <tr ng-repeat="cuenta in currentPageUsuarios"> | 27 | <tr ng-repeat="cuenta in currentPageUsuarios"> |
| 28 | <td ng-bind="cuenta.id"></td> | 28 | <td ng-bind="cuenta.id"></td> |
| 29 | <td ng-bind="cuenta.nombre"></td> | 29 | <td ng-bind="cuenta.nombre"></td> |
| 30 | <td ng-bind="cuenta.dni"></td> | 30 | <td ng-bind="cuenta.dni"></td> |
| 31 | <td ng-bind="cuenta.telefono"></td> | 31 | <td ng-bind="cuenta.telefono"></td> |
| 32 | <td class="text-center"> | 32 | <td class="text-center"> |
| 33 | <button | 33 | <button |
| 34 | class="btn btn-outline-dark boton-accion" | 34 | class="btn btn-outline-dark boton-accion" |
| 35 | title="Editar acceso" | 35 | title="Editar acceso" |
| 36 | ng-click="openModalAcceso(cuenta)" | 36 | ng-click="openModalAcceso(cuenta)" |
| 37 | > | 37 | > |
| 38 | <i class="fa fa-lock"></i> | 38 | <i class="fa fa-lock"></i> |
| 39 | </button> | 39 | </button> |
| 40 | </td> | 40 | </td> |
| 41 | </tr> | 41 | </tr> |
| 42 | </body> | 42 | </body> |
| 43 | </table> | 43 | </table> |
| 44 | </div> | 44 | </div> |
| 45 | </div> | 45 | </div> |
| 46 | <div class="row"> | 46 | <div class="row"> |
| 47 | <nav ng-show="currentPageUsuarios.length > 0" class="mr-auto"> | 47 | <nav ng-show="currentPageUsuarios.length > 0" class="mr-auto paginador-abm"> |
| 48 | <ul class="pagination pagination-sm mb-0"> | 48 | <ul class="pagination pagination-sm mb-0"> |
| 49 | <li class="page-item" ng-class="{'disabled': currentPage == 1}"> | 49 | <li class="page-item" ng-class="{'disabled': currentPage == 1}"> |
| 50 | <a class="page-link" href="javascript:void()" ng-click="selectPage(currentPage - 1)"> | 50 | <a class="page-link" href="javascript:void()" ng-click="selectPage(currentPage - 1)"> |
| 51 | <span aria-hidden="true">«</span> | 51 | <span aria-hidden="true">«</span> |
| 52 | <span class="sr-only">Anterior</span> | 52 | <span class="sr-only">Anterior</span> |
| 53 | </a> | 53 | </a> |
| 54 | </li> | 54 | </li> |
| 55 | <li | 55 | <li |
| 56 | class="page-item" | 56 | class="page-item" |
| 57 | ng-repeat="pagina in paginas" | 57 | ng-repeat="pagina in paginas" |
| 58 | ng-class="{'active': pagina == currentPage}" | 58 | ng-class="{'active': pagina == currentPage}" |
| 59 | > | 59 | > |
| 60 | <a | 60 | <a |
| 61 | class="page-link" | 61 | class="page-link" |
| 62 | href="javascript:void()" | 62 | href="javascript:void()" |
| 63 | ng-click="selectPage(pagina)" | 63 | ng-click="selectPage(pagina)" |
| 64 | ng-bind="pagina" | 64 | ng-bind="pagina" |
| 65 | ></a> | 65 | ></a> |
| 66 | </li> | 66 | </li> |
| 67 | <li class="page-item" ng-class="{'disabled': currentPage == lastPage}"> | 67 | <li class="page-item" ng-class="{'disabled': currentPage == lastPage}"> |
| 68 | <a class="page-link" href="javascript:void()" ng-click="selectPage(currentPage + 1)"> | 68 | <a class="page-link" href="javascript:void()" ng-click="selectPage(currentPage + 1)"> |
| 69 | <span aria-hidden="true">»</span> | 69 | <span aria-hidden="true">»</span> |
| 70 | <span class="sr-only">Siguiente</span> | 70 | <span class="sr-only">Siguiente</span> |
| 71 | </a> | 71 | </a> |
| 72 | </li> | 72 | </li> |
| 73 | </ul> | 73 | </ul> |
| 74 | </nav> | 74 | </nav> |
| 75 | </div> | 75 | </div> |
| 76 | 76 |