Files
herbarium/templates/species/new.html.twig
2024-06-11 23:05:31 +02:00

12 lines
278 B
Twig

{% extends 'base.html.twig' %}
{% block title %}New Species{% endblock %}
{% block body %}
<h1>{{ 'create_new_species'|trans }}</h1>
{{ include('species/_form.html.twig') }}
<a href="{{ path('app_species_index') }}">{{ 'back_to_list'|trans }}</a>
{% endblock %}