update form

This commit is contained in:
bastien ollier
2024-06-07 15:54:49 +02:00
parent 541ec566d1
commit b7a750604a
20 changed files with 582 additions and 57 deletions

View File

@@ -0,0 +1,13 @@
{% extends 'base.html.twig' %}
{% block title %}Edit Species{% endblock %}
{% block body %}
<h1>Edit Species</h1>
{{ include('species/_form.html.twig', {'button_label': 'Update'}) }}
<a href="{{ path('app_species_index') }}">back to list</a>
{{ include('species/_delete_form.html.twig') }}
{% endblock %}