Files
herbarium/templates/species/edit.html.twig
hugo.pradier2 d20580cfee test 2
2024-06-12 16:04:58 +02:00

13 lines
373 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 href="{{ path('app_species_index') }}">{{ 'back_to_list'|trans }}</a>
{{ include('species/_delete_form.html.twig') }}
{% endblock %}