{% extends 'base.html.twig' %} {% block title %}Herbarium - Détail de l'espèces{% endblock %} {% block body %}

{{ specie.vernacularName }}

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

Posts :

{% for post in specie.posts %}

📅 {{ post.publicationDate | date }}

📍 géolocalisation :
- Longitude : {{ post.longitude }}
- Latitude : {{ post.latitude }}
- Altitude : {{ post.altitude }}

💬 Commentaire :
- {{ post.getCommentary }}
{% endfor %}
{% endblock %}