{% extends 'base.html.twig' %} {% block title %}{{ 'post'|trans }}{% endblock %} {% block body %}

{{ 'post'|trans }}

{% if post.image %} {% endif %}
Id {{ post.id }}
{{ 'found_date'|trans }} {{ post.foundDate ? post.foundDate|date('Y-m-d H:i:s') : '' }}
{{ 'publication_date'|trans }} {{ post.publicationDate ? post.publicationDate|date('Y-m-d H:i:s') : '' }}
Latitude {{ post.latitude }}
Longitude {{ post.longitude }}
Altitude {{ post.altitude }}
Image
{{ 'commentary'|trans }} {{ post.commentary }}
{{ 'back_to_list'|trans }} {{ 'edit'|trans }} {{ 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 %}