{% import "/sistema/vistas/input/input.html.php" as forms %}
<table class="table table-bordered table-striped tableOption" id="tabla{{ controlador }}">
    <thead>
        <tr>
            <th>Identificación Colaborador</th>
            <th>Nombre Colaborador</th>
        </tr>
    </thead>
    <tbody>
        {% for Colaborador in Colaboradores %}
            <tr>
                <td>{{ Colaborador.personaIDENTIFICACION }}</td>
                <td>{{ Colaborador.personaNOMBRES }} {{ Colaborador.personaAPELLIDOS}}</td>
            </tr>
        {% endfor %}
    </tbody>
    <tfoot>
    </tfoot>
</table>

<script>
    $(document).ready(function () {
        checkBoxSICAM('.checkUsuarios');
        activarSeleccionarTodos("chk-seleccionarTodosUsuarios", "checkUsuarios");
    });
    $('.tableOption').DataTable();
</script>
