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.
35 lines
868 B
35 lines
868 B
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %}Species{% endblock %}
|
|
|
|
{% block body %}
|
|
<h1>Species</h1>
|
|
|
|
<table class="table">
|
|
<tbody>
|
|
<tr>
|
|
<th>Id</th>
|
|
<td>{{ species.id }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th>Scientific_name</th>
|
|
<td>{{ species.scientificName }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th>Vernacular_name</th>
|
|
<td>{{ species.vernacularName }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th>Region</th>
|
|
<td>{{ species.region }}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
<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') }}
|
|
{% endblock %}
|