Commit 1d2893a94a597aff1cfa356943f0e50aa729da26
1 parent
810b738a6a
Exists in
master
and in
2 other branches
Codigo de identificacion
Showing
1 changed file
with
2 additions
and
0 deletions
Show diff stats
src/views/foca-abm-choferes-listado.html
... | ... | @@ -15,6 +15,7 @@ |
15 | 15 | <table class="table table-default table-hover table-sm table-abm table-striped mb-0"> |
16 | 16 | <thead> |
17 | 17 | <tr> |
18 | + <th>Código</th> | |
18 | 19 | <th>Nombre</th> |
19 | 20 | <th>Documento</th> |
20 | 21 | <th>Teléfono</th> |
... | ... | @@ -31,6 +32,7 @@ |
31 | 32 | </thead> |
32 | 33 | <tbody> |
33 | 34 | <tr ng-repeat="chofer in choferes | filter:filters"> |
35 | + <td ng-bind="chofer.id"></td> | |
34 | 36 | <td ng-bind="chofer.nombre"></td> |
35 | 37 | <td ng-bind="chofer.dni"></td> |
36 | 38 | <td ng-bind="chofer.telefono"></td> |