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.
40 lines
1.1 KiB
40 lines
1.1 KiB
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %}Species index{% endblock %}
|
|
|
|
{% block body %}
|
|
<h1>Species index</h1>
|
|
|
|
<table class="table">
|
|
<thead>
|
|
<tr>
|
|
<th>Id</th>
|
|
<th>Scientific_name</th>
|
|
<th>Vernacular_name</th>
|
|
<th>Region</th>
|
|
<th>actions</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for species in species %}
|
|
<tr>
|
|
<td>{{ species.id }}</td>
|
|
<td>{{ species.scientificName }}</td>
|
|
<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>
|
|
</td>
|
|
</tr>
|
|
{% else %}
|
|
<tr>
|
|
<td colspan="5">no records found</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
|
|
<a href="{{ path('app_species_new') }}">Create new</a>
|
|
{% endblock %}
|