Files
herbarium/templates/species/new.html.twig
bastien ollier b7a750604a update form
2024-06-07 15:58:55 +02:00

12 lines
250 B
Twig

{% extends 'base.html.twig' %}
{% block title %}New Species{% endblock %}
{% block body %}
<h1>Create new Species</h1>
{{ include('species/_form.html.twig') }}
<a href="{{ path('app_species_index') }}">back to list</a>
{% endblock %}