foca-crear-login.html 2.84 KB
<div class="row">
    <foca-cabecera-facturador 
    titulo="'Administración de Ingreso'"
    fecha="now"
    class="mb-0 col-12"
    ></foca-cabecera-facturador>
</div>
<div class="row">
    <div class="col-12 col-md-10 p-0 mt-4 border border-white rounded">
        <div class="row px-5 py-2 botonera-secundaria">
            <div class="col-12">
                <foca-botonera-facturador botones="botonera" max="6" class="row"></foca-botonera-facturador>
            </div>
        </div>
        <table class="table table-default table-hover table-sm table-abm table-striped mb-0">
            <thead>
                <tr>
                    <th>Código</th>
                    <th>Nombre</th>
                    <th>DNI</th>
                    <th>Teléfono</th>
                    <th class="text-center">
                    </th>
                </tr>
            </thead>
            <tbody>
                <tr ng-repeat="cuenta in currentPageUsuarios">
                    <td ng-bind="cuenta.id"></td>
                    <td ng-bind="cuenta.nombre"></td>
                    <td ng-bind="cuenta.dni"></td>
                    <td ng-bind="cuenta.telefono"></td>
                    <td class="text-center">
                        <button
                            class="btn btn-outline-dark boton-accion"
                            title="Editar acceso"
                            ng-click="openModalAcceso(cuenta)"
                        >
                            <i class="fa fa-lock"></i>
                        </button>
                    </td>
                </tr>
            </body>
        </table>
    </div>
</div>
<div class="row">
    <nav ng-show="currentPageUsuarios.length > 0" class="mr-auto">
        <ul class="pagination pagination-sm mb-0">
            <li class="page-item" ng-class="{'disabled': currentPage == 1}">
                <a class="page-link" href="javascript:void()" ng-click="selectPage(currentPage - 1)">
                    <span aria-hidden="true">&laquo;</span>
                    <span class="sr-only">Anterior</span>
                </a>
            </li>
            <li
                class="page-item"
                ng-repeat="pagina in paginas"
                ng-class="{'active': pagina == currentPage}"
            >
                <a
                    class="page-link"
                    href="javascript:void()"
                    ng-click="selectPage(pagina)"
                    ng-bind="pagina"
                ></a>
            </li>
            <li class="page-item" ng-class="{'disabled': currentPage == lastPage}">
                <a class="page-link" href="javascript:void()" ng-click="selectPage(currentPage + 1)">
                    <span aria-hidden="true">&raquo;</span>
                    <span class="sr-only">Siguiente</span>
                </a>
            </li>
        </ul>
    </nav>
</div>