<table id="tbl-usuarios-notificaciones{{hash_vista}}" class="table table-bordered table-hover table-responsive">
    <thead>
        <tr>
            <th width="1%" ><input type="checkbox" class="check-usuarios-notificaciones{{hash_vista}}" id="chk-Todosusuariosnotificaciones{{hash_vista}}" ></th>
            <th width="1%" >Fecha</th>
            <th width="1%" >Para:</th>
            <th width="1%" >Tipo</th>
            <th width="1%" >Titulo</th>
            <th width="1%" >Mensaje</th>
            <th width="1%" >Lectura</th>
            <th width="1%" >Operación</th>
            <th width="1%" >Ejecutado</th>
        </tr>
    </thead>
    <tbody> 
        {% if Notificaciones %}
        {% for notificacion in Notificaciones %}
        <tr>
            <td>
                <input type="checkbox" class="checkTable check-usuarios-notificaciones{{hash_vista}}" name="check-notificaciones[]" 
                       value="{{ notificacion.notificacionID }}" data-titulo="{{ notificacion.notificacionTITULO }}" />
            </td>
            <td>{{ notificacion.notificacionFCHCREACION }}</td>
            <td>{{ notificacion.colaboradorEMAIL }}</td>
            <td>{{ notificacion.notificacionTIPO }}</td>
            <td>{{ notificacion.notificacionTITULO }}</td>
            <td class="titulo-flotante" title="{{ notificacion.notificacionMENSAJE|striptags }}" >
                {{ notificacion.notificacionMENSAJE|striptags[0:21] }}...
            </td>
            <td>
                {{ notificacion.notificacionFCHLECTURA }}
            </td>
            <td>
                {{ notificacion.operacionTITULO }}
            </td>
            <td>
                {{ notificacion.notificacionFCHOPERACION }}
            </td>
        </tr>
        {% endfor %}
        {% endif %}
    </tbody>
</table>
<script type="text/javascript" >
    $(document).ready(function () {
        checkBoxSICAM('.check-usuarios-notificaciones{{hash_vista}}');
        activarSeleccionarTodos("chk-Todosusuariosnotificaciones{{hash_vista}}", "check-usuarios-notificaciones{{hash_vista}}");
    });
    crearTablaScrollVertical("tbl-usuarios-notificaciones{{hash_vista}}", "320");
</script>
