<table id="tablaMetas-{{ hash_vista }}" class="table table-striped table-hover" cellspacing="0" width="100%">
    <thead>
        <tr>
            <th></th>
            <th>Plan</th>
            <th>Código</th>
            <th>Descripción</th>
            <th>Meta</th>
            <th>Frecuencia de Medida</th>
        </tr>
    </thead>
            
    <tbody>
        {% for meta in Metas  %}
        <tr>
            <td><input type="checkbox" id="checkb{{ meta.metaID }}" name="checkb[]" value="{{ meta.metaID }}" class="check checkMetas"></td>
            <td>{{ meta.planCODIGO }}</td>
            <td>{{ meta.metaCODIGO }}</td>
            <td>{{ meta.metaDESCRIPCION|striptags}}</td>
            <td>{{ meta.metaEVALUACION }}  {{ meta.metaVALORESPERADO }}</td>
            <td>{{ meta.metaFRECUENCIAMEDIDA }}</td>
        </tr>
        {% endfor %}
    </tbody>
</table>

<script type="text/javascript">
    
     $(document).ready( function(){
       checkBoxSICAM('.checkMetas'); 
    });  
    
</script>
