<table class="table table-bordered table-hover table-responsive">
<thead>
<tr>
<th>Código</th>
<th>Descripción</th>
<th>Meta</th>
<th>Frecuencia de Medida</th>
</tr>
</thead>
<tbody>
{% if Metas %}
{% for Meta in Metas %}
<tr>
<td>
{{ Meta.metaCODIGO }}
</td>
<td class="titulo-flotante" title="{{ Meta.metaDESCRIPCION|striptags }}">
{{ Meta.metaDESCRIPCION| striptags[0:50] }}...
</td>
<td>
{{ Meta.metaEVALUACION }} {{ Meta.metaVALORESPERADO }}
</td>
<td>
{{ Meta.metaFRECUENCIAMEDIDA }}
</td>
</tr>
{% endfor %}
{% endif %}
</tbody>
</table>