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

{{ species.vernacularName }}

🔬 {{ 'scientific_name'|trans }} : {{ species.scientificName }}
📍 {{ 'region'|trans }} : {{ species.region }}

{{ 'posts'|trans }} :

{% for post in species.posts %}

{{ post.publicationDate | date }}

📍{{ 'geolocation'|trans }}
{{ post.longitude }} - {{ post.latitude }}
💬{{ 'commentary'|trans }}
{{ post.getCommentary }}
{% endfor %} {{ 'back_to_list'|trans }} {{ 'edit'|trans }} {{ include('species/_delete_form.html.twig') }}
{% endblock %}