<table id="tbl-Planeador-PlanesOperaciones-{{ hash_vista }}" class="table table-bordered table-hover table-responsive">
    <thead>
        <tr>
            <th width="1%" ><input type="checkbox" class="check-Planeador-PlanesOperaciones" id="chk-TodosPlanesOperacionesPlaneador" ></th>
            <th width="1%" >Programa</th>
            <th width="1%" >Acción</th>
            <th width="1%" >Actividad</th>
            <th width="1%" >Clase</th>
            <th width="1%" >Código</th>
            <th >Descripción</th>
            <th width="1%">Presupuestado</th>
            <th width="1%">Responsable</th>
            <th width="1%">Estado Revision</th>
        </tr>
    </thead>
    <tbody> 
        {% if PlanesOperaciones %}
        {% for PlanOperacion in PlanesOperaciones %}
        <tr>
            <td>
                <input type="checkbox" class="checkTable check-Planeador-PlanesOperaciones" name="check-PlanesOperaciones[]" 
                       value="{{ PlanOperacion.planOperacionID }}" data-titulo="{{ PlanOperacion.planOperacionTITULO }}" />
            </td>
            <td>{{ PlanOperacion.programaTITULO }}</td>
            <td>{{ PlanOperacion.accionTITULO }}</td>
            <td>{{ PlanOperacion.actividadTITULO }}</td>
            <td>{{ PlanOperacion.claseOperacionTITULO }}</td>
            <td>{{ PlanOperacion.planOperacionCODIGO }}</td>
            <td class="">
                {{ PlanOperacion.planOperacionDESCRIPCION|striptags }}
            </td>
            <td>$ {{ PlanOperacion.planOperacionPRESUPUESTADO|number_format(2, '.', ',') }}</td>
            <td>{{ labelEstado(PlanOperacion.cargoTITULO) }}</td>
            <td>{{ labelEstado(PlanOperacion.planOperacionESTADOREVISIONTECNICA) }}</td>
        </tr>
        {% endfor %}
        {% endif %}
    </tbody>
</table>
<script type="text/javascript" >
    $(document).ready(function () {
        checkBoxSICAM('.check-Planeador-PlanesOperaciones');
        activarSeleccionarTodos("chk-TodosPlanesOperacionesPlaneador", ".check-Planeador-PlanesOperaciones");
    });
    crearTablaScroll("tbl-Planeador-PlanesOperaciones-{{ hash_vista }}", "320");
</script>    
