<table id="tbl-Planeador-RevisionFinancieraOperaciones-{{ hash_vista }}" class="table table-bordered table-hover table-responsive">
<thead>
<tr>
<th width="1%" ><input type="checkbox" class="check-Planeador-RevisionFinancieraOperaciones" id="chk-TodosRevisionFinancieraOperacionesPlaneador{{ hash_vista }}" ></th>
<th width="1%" >Programa</th>
<th width="1%" >Accion</th>
<th width="1%" >Actividad</th>
<th width="1%" >Recurso</th>
<th width="1%" >Código</th>
<th width="1%" >Presupuestado</th>
<th width="1%" >Rubro</th>
<th width="1%" >Centro de Costos</th>
<th width="1%" title="Estado" class="titulo-flotante" >Estado Revision</th>
</tr>
</thead>
<tbody>
{% if RevisionFinancieraOperaciones %}
{% for RevisionFinancieraOperacion in RevisionFinancieraOperaciones %}
<tr>
<td>
<input type="checkbox" class="checkTable check-Planeador-RevisionFinancieraOperaciones" name="check-RevisionFinancieraOperaciones[]"
value="{{ RevisionFinancieraOperacion.planOperacionID }}" data-titulo="{{ RevisionFinancieraOperacion.planOperacionTITULO }}" />
</td>
<td>{{ RevisionFinancieraOperacion.programaTITULO }}</td>
<td>{{ RevisionFinancieraOperacion.accionTITULO }}</td>
<td>{{ RevisionFinancieraOperacion.actividadTITULO }}</td>
<td>{{ RevisionFinancieraOperacion.claseOperacionTITULO }}</td>
<td>{{ RevisionFinancieraOperacion.planOperacionCODIGO }}</td>
<td>$ {{ RevisionFinancieraOperacion.planOperacionPRESUPUESTADO|number_format(2, '.', ',') }}</td>
<td>{{ RevisionFinancieraOperacion.rubroCODIGO }} - {{ RevisionFinancieraOperacion.rubroTITULO }}</td>
<td>{{ RevisionFinancieraOperacion.centroCostosCODIGO }} - {{ RevisionFinancieraOperacion.centroCostosTITULO }}</td>
<td>{{ labelEstado(RevisionFinancieraOperacion.planOperacionESTADOREVISIONFINANCIERA) }}</td>
</tr>
{% endfor %}
{% endif %}
</tbody>
</table>
<script type="text/javascript" >
$(document).ready(function () {
checkBoxSICAM('.check-Planeador-RevisionFinancieraOperaciones');
checkBoxSICAM('#chk-TodosRevisionFinancieraOperacionesPlaneador{{ hash_vista }}');
activarSeleccionarTodos("chk-TodosRevisionFinancieraOperacionesPlaneador{{ hash_vista }}", "check-Planeador-RevisionFinancieraOperaciones");
crearTablaScrollVertical('tbl-Planeador-RevisionTecnicaOperaciones-{{ hash_vista }}', '610');
});
crearTablaScroll("tbl-Planeador-RevisionFinancieraOperaciones-{{ hash_vista }}", "610");
</script>