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

{{ species.vernacularName }}

🔬 Nom Scientifique : {{ species.scientificName }}
📍 Region : {{ species.region }}

Posts :

{% for post in species.posts %}

{{ post.publicationDate | date }}

📍Géolocalisation
{{ post.longitude }} - {{ post.latitude }}
📍Commentaire
{{ post.getCommentary }}
{% endfor %} back to list edit {{ include('species/_delete_form.html.twig') }}
{% endblock %}