13 lines
407 B
Twig
13 lines
407 B
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %}{{ 'edit_species'|trans }}{% endblock %}
|
|
|
|
{% block body %}
|
|
<h1>{{ 'edit_species'|trans }}</h1>
|
|
{{ include('species/_form.html.twig', {'button_label': 'update'|trans}) }}
|
|
|
|
<a class="btn btn-warning mb-4 mt-4" href="{{ path('app_species_index') }}">{{ 'back_to_list'|trans }}</a>
|
|
|
|
{{ include('species/_delete_form.html.twig') }}
|
|
{% endblock %}
|