<table id="tablaActividadesOperaciones" class="table table-striped table-bordered operaciones-predefinida" cellspacing="0" width="100%">
    <thead>
        <tr>
            <th></th>
            <th>Código</th>
            <th>Título</th>
            <th>Descripción</th>
            <th>Clase de Operación</th>
            <th>Centro de Costos</th>
            <th>Rubro</th>
        </tr>
    </thead>
    <tbody>
        {% for operacionP in operacionesPredefinidas  %}
        <tr  id="{{operacionP.operacionPredefinidaID}}">
            <td><input type="checkbox" id="checkb{{ operacionP.operacionPredefinidaID }}" name="checkb[]" value="{{ operacionP.operacionPredefinidaID }}" class="checkTable checkOperaciones Seleccion"></td>
            <td>{{ operacionP.operacionPredefinidaCODIGO }}</td>
            <td>{{ operacionP.operacionPredefinidaTITULO }}</td>
            <td>{{ operacionP.operacionPredefinidaDESCRIPCION|striptags }}</td>
            <td>{{ operacionP.claseOperacionTITULO }}</td>
            <td>{{ operacionP.centroCostosTITULO }}</td>
            <td>{{ operacionP.rubroTITULO }}</td>
        </tr>
        {% endfor %}
    </tbody>
</table>

<script type="text/javascript">

    
     $(document).ready( function(){
       checkBoxSICAM('.checkOperaciones'); 
    });  
    
</script>
