<table id="tablaOperaciones-tareas-{{ hash_vista }}" class="table table-striped table-bordered" cellspacing="0" width="100%">
    <thead>
        <tr>
            <th></th>
            <th>Código</th>
            <th>Título</th>
            <th>Descripción</th>
        </tr>
    </thead>
    <tbody>
        {% for operacionP in operacionesPredefinidas  %}
        <tr>
            <td><input type="checkbox" id="checkb{{ operacionP.operacionPredefinidaID }}" name="checkb[]" 
                value="{{ operacionP.operacionPredefinidaID }}" class="check checkOperaciones-tareas"></td>
            <td>{{ operacionP.operacionPredefinidaCODIGO }}</td>
            <td>{{ operacionP.operacionPredefinidaTITULO }}</td>
            <td>{{ operacionP.operacionPredefinidaDESCRIPCION|striptags }}</td>
        </tr>
        {% endfor %}
    </tbody>
</table>

<script type="text/javascript">
    $(document).ready(function () {
        checkBoxSICAM('.checkOperaciones-tareas'); 
        crearTablaScroll('tablaOperaciones-tareas-{{ hash_vista }}', '410');
    }); 
</script>
