{% extends 'base.html.twig' %} {% block body %}

PlanificacionSeccion

{% for planificacion in planificacionSeccion %}
Fecha_creacion {% if planificacion.fechacreacion %}{{ planificacion.fechacreacion|date('Y-m-d H:i:s') }}{% endif %}
Fecha_ultima_actualizacion {% if planificacion.fechaultimaactualizacion %}{{ planificacion.fechaultimaactualizacion|date('Y-m-d H:i:s') }}{% endif %}
Observacion {{ planificacion.observacion }}
Id {{ planificacion.id }}
{% endfor %} {% endblock %}