{% extends 'base.html.twig' %} {% block title %}Post{% endblock %} {% block body %}

Post

Id {{ post.id }}
FoundDate {{ post.foundDate ? post.foundDate|date('Y-m-d H:i:s') : '' }}
PublicationDate {{ post.publicationDate ? post.publicationDate|date('Y-m-d H:i:s') : '' }}
Latitude {{ post.latitude }}
Longitude {{ post.longitude }}
Altitude {{ post.altitude }}
Commentary {{ post.commentary }}
back to list edit {{ include('post/_delete_form.html.twig') }}
{% for comment in post.comments %} {{ include('/comment/comment.html.twig') }} {% endfor %}
{{ form_start(form) }} {{ form_widget(form) }} {{ form_end(form) }}
{% endblock %}