You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
897 B
37 lines
897 B
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %}Species{% endblock %}
|
|
|
|
{% block body %}
|
|
<h1>{{ species.vernacularName }}</h1>
|
|
<p>
|
|
🔬 Nom Scientifique : {{ species.scientificName }}<br/>
|
|
📍 Region : {{ species.region }}
|
|
</p>
|
|
|
|
<div>
|
|
<h2>Posts :</h2>
|
|
|
|
{% for post in species.posts %}
|
|
<div>
|
|
<dt>
|
|
<h3>{{ post.publicationDate | date }}</h3>
|
|
</dt>
|
|
<dl>
|
|
<dt>📍Géolocalisation</dt>
|
|
<dd>{{ post.longitude }} - {{ post.latitude }}</dd>
|
|
|
|
<dt>📍Commentaire</dt>
|
|
<dd>{{ post.getCommentary }}</dd>
|
|
</dl>
|
|
</div>
|
|
{% endfor %}
|
|
|
|
<a href="{{ path('app_species_index') }}">back to list</a>
|
|
|
|
<a href="{{ path('app_species_edit', {'id': species.id}) }}">edit</a>
|
|
|
|
{{ include('species/_delete_form.html.twig') }}
|
|
</div>
|
|
{% endblock %}
|