<table id="tbl-Usuarios-UsuariosColaborador-{{ hash_vista }}" class="table table-bordered table-hover table-responsive">
    <thead>
        <tr>
            <th><input type="checkbox" class="check-Usuarios-UsuariosColaborador" id="chk-TodosUsuarios-UsuariosColaborador{{ hash_vista }}" ></th>
            <th>Usuario</th>
            <th>Nombre Completo</th>
            <th>Cargo</th>
            <th>Ultimo Ingreso</th>
            <th>Estado</th>
        </tr>
    </thead>
    <tbody> 
        {% if UsuariosColaboradores %}
        {% for UsuariosColaborador in UsuariosColaboradores %}
        <tr>
            <td>
                <input type="checkbox" class="checkTable check-Usuarios-UsuariosColaborador" name="checkUsuarios[]" 
                       value="{{ UsuariosColaborador.usuarioID }}" data-titulo="{{ UsuariosColaborador.usuarioTITULO }}" />
            </td>
            <td>{{ UsuariosColaborador.usuarioNOMBRE }}</td>
            <td>{{ UsuariosColaborador.personaRAZONSOCIAL }}</td>
            <td>
                {{ UsuariosColaborador.cargoTITULO }}
            </td>
            <td>{{ UsuariosColaborador.usuarioULTINGRESO }}</td>
            <td>{{ UsuariosColaborador.usuarioESTADO }}</td>
        </tr>
        {% endfor %}
        {% endif %}
    </tbody>
</table>
<script type="text/javascript" >
    $(document).ready(function () {
        checkBoxSICAM('.check-Usuarios-UsuariosColaborador');
        checkBoxSICAM('#chk-TodosUsuarios-UsuariosColaborador{{ hash_vista }}');
        activarSeleccionarTodos("chk-TodosUsuarios-UsuariosColaborador{{ hash_vista }}", "check-Usuarios-UsuariosColaborador");
        crearTablaScrollVertical('tbl-Usuarios-UsuariosColaborador-{{ hash_vista }}', '610');
    });
</script>    

