foca-crear-login.html
1.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<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" extra="3" 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 cuentas | filter:filters">
<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>