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

{{ species.vernacularName }}

🔬 Scientific name : {{ species.scientificName }}
📍 Region : {{ species.region }}

Posts :

{% for post in species.posts %}

{{ post.publicationDate | date }}

📍Geolocation
{{ post.longitude }} - {{ post.latitude }}
💬Commentary
{{ post.getCommentary }}
{% endfor %} Back to list Edit {{ include('species/_delete_form.html.twig') }}
{% endblock %}