start translate
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
|
||||
{{ include('species/_form.html.twig', {'button_label': 'Update'}) }}
|
||||
|
||||
<a href="{{ path('app_species_index') }}">back to list</a>
|
||||
<a href="{{ path('app_species_index') }}">Back to list</a>
|
||||
|
||||
{{ include('species/_delete_form.html.twig') }}
|
||||
{% endblock %}
|
||||
|
@@ -19,7 +19,7 @@
|
||||
</a>
|
||||
</dt>
|
||||
<dd >
|
||||
🔬 Nom Scientifique : {{ specie.scientificName }}<br/>
|
||||
🔬 Scientific name : {{ specie.scientificName }}<br/>
|
||||
📍 Region : {{ specie.region }}
|
||||
</dd><br/>
|
||||
{% endfor %}
|
||||
|
@@ -7,5 +7,5 @@
|
||||
|
||||
{{ include('species/_form.html.twig') }}
|
||||
|
||||
<a href="{{ path('app_species_index') }}">back to list</a>
|
||||
<a href="{{ path('app_species_index') }}">Back to list</a>
|
||||
{% endblock %}
|
||||
|
@@ -5,7 +5,7 @@
|
||||
{% block body %}
|
||||
<h1>{{ species.vernacularName }}</h1>
|
||||
<p>
|
||||
🔬 Nom Scientifique : {{ species.scientificName }}<br/>
|
||||
🔬 Scientific name : {{ species.scientificName }}<br/>
|
||||
📍 Region : {{ species.region }}
|
||||
</p>
|
||||
|
||||
@@ -18,18 +18,18 @@
|
||||
<h3>{{ post.publicationDate | date }}</h3>
|
||||
</dt>
|
||||
<dl>
|
||||
<dt>📍Géolocalisation</dt>
|
||||
<dt>📍Geolocation</dt>
|
||||
<dd>{{ post.longitude }} - {{ post.latitude }}</dd>
|
||||
|
||||
<dt>📍Commentaire</dt>
|
||||
<dt>💬Commentary</dt>
|
||||
<dd>{{ post.getCommentary }}</dd>
|
||||
</dl>
|
||||
</div>
|
||||
{% endfor %}
|
||||
|
||||
<a href="{{ path('app_species_index') }}">back to list</a>
|
||||
<a href="{{ path('app_species_index') }}">Back to list</a>
|
||||
|
||||
<a href="{{ path('app_species_edit', {'id': species.id}) }}">edit</a>
|
||||
<a href="{{ path('app_species_edit', {'id': species.id}) }}">Edit</a>
|
||||
|
||||
{{ include('species/_delete_form.html.twig') }}
|
||||
</div>
|
||||
|
@@ -23,8 +23,8 @@
|
||||
<td>{{ species.vernacularName }}</td>
|
||||
<td>{{ species.region }}</td>
|
||||
<td>
|
||||
<a href="{{ path('app_species_show', {'id': species.id}) }}">show</a>
|
||||
<a href="{{ path('app_species_edit', {'id': species.id}) }}">edit</a>
|
||||
<a href="{{ path('app_species_show', {'id': species.id}) }}">Show</a>
|
||||
<a href="{{ path('app_species_edit', {'id': species.id}) }}">Edit</a>
|
||||
</td>
|
||||
</tr>
|
||||
{% else %}
|
||||
|
Reference in New Issue
Block a user