<table id="tbl-Usuarios-Rolestodos-{{hash_vista}}" class="table table-bordered table-hover table-responsive">
<thead>
<tr>
<th width="1%" ><input type="checkbox" class="check-Usuarios-Rolestodos" id="chk-TodosUsuarios-Rolestodos" ></th>
<th width="1%" >CODIGO</th>
<th width="1%" >TITULO</th>
<th>DESCRIPCION</th>
</tr>
</thead>
<tbody>
{% if Roles %}
{% for Rol in Roles %}
<tr id="{{ Rol.rolID }}">
<td>
<input type="checkbox" class="checkTable check-Usuarios-Rolestodos" name="checkRoles[]"
value="{{ Rol.rolID }}" data-titulo="{{ Rol.rolTITULO }}" />
<input type="hidden" name="rolesID[]" value="{{ Rol.rolID }}" />
</td>
<td>{{ Rol.rolCODIGO }}</td>
<td>{{ Rol.rolTITULO }}</td>
<td class="titulo-flotante" title="{{ beneficioAfiliados.beneficioDESCRIPCION|striptags }}" >
{{ Rol.rolDESCRIPCION|striptags[0:75] }}...
</td>
</tr>
{% endfor %}
{% endif %}
</tbody>
</table>
<script type="text/javascript" >
$(document).ready(function () {
checkBoxSICAM('.check-Usuarios-Rolestodos');
activarSeleccionarTodos("chk-TodosUsuarios-Rolestodos", "check-Usuarios-Rolestodos");
});
crearTablaScroll("tbl-Usuarios-Rolestodos-{{hash_vista}}", "320");
</script>