foca-abm-choferes-listado.html 2.18 KB
<div class="row">
    <foca-cabecera-facturador 
    titulo="'Choferes'"
    fecha="now"
    class="mb-0 col-lg-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>Nombre</th>
                    <th>DNI</th>
                    <th>Teléfono</th>
                    <th class="text-center">
                        <button
                            ng-disabled="!idTransportista"
                            title="Agregar"
                            class="btn btn-outline-debo boton-accion"
                            ng-click="editar(0)">
                            <i class="fa fa-plus"></i>
                        </button>
                    </th>
                </tr>
            </thead>
            <tbody>
                <tr ng-repeat="chofer in choferes | filter:filters">
                    <td ng-bind="chofer.nombre"></td>
                    <td ng-bind="chofer.dni"></td>
                    <td ng-bind="chofer.telefono"></td>
                    <td class="text-center">
                        <button
                            class="btn btn-outline-dark boton-accion"
                            title="Editar"
                            ng-click="editar(chofer.id)"
                        >
                            <i class="fa fa-pencil"></i>
                        </button>
                        <button
                            class="btn btn-outline-dark boton-accion"
                            title="Eliminar"
                            ng-click="solicitarConfirmacion(chofer)"
                        >
                            <i class="fa fa-trash"></i>
                        </button>
                    </td>
                </tr>
            </body>
        </table>
    </div>
</div>