<table  class="table table-bordered table-hover table-responsive">
    <thead>
        <tr>
            <th>Código</th>
            <th>Título</th>
            <th>Justificación</th>
            <th>Fecha Inicia</th>
            <th>Fecha Termina</th>
            <th class="success">Planeado</th>
            <th class="warning">Ejecutado</th>
            <th>Ver</th>
        </tr>
    </thead>
    <tbody> 
        {% if Acciones %}
            {% for planAccion in Acciones %}
            <tr>
                <td>
                    {{ planAccion.accionCODIGO }}
                </td>
                <td>
                    {{ planAccion.accionTITULO }}
                </td>
                <td>
                    {{ planAccion.accionJUSTIFICACION| striptags[0:50] }}...
                </td>
                <td>
                    {{ planAccion.FechaInicio.FECHAINICIO }}
                </td>
                <td>
                    {{ planAccion.FechaFinal.FECHAFINAL }}
                </td>
                <td>
                   {{ planAccion.Total.TOTAL|number_format }}
                </td>
                 <td>
                   {{ planAccion.TotalGastado.TOTAL|number_format }}
                </td>
                <td >
                    <button data-skin="skin-blue" class="btn btn-info btn-xs"  onclick="cargarDescripcionAcccion_{{hash_padre}}('{{planAccion.accionID}}','{{TipoPlanID}}')"><i class="fa fa-eye"></i></button>
                </td>
            </tr>
            {% endfor %}
         {% endif %}
    </tbody>
</table>
