Files
herbarium/templates/species/new.html.twig
hugo.pradier2 352a0db047 start translate
2024-06-10 21:43:00 +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 %}