Files
herbarium/templates/species/new.html.twig
2024-06-13 08:52:43 +02:00

12 lines
312 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 class="btn btn-warning mb-4 mt-4" href="{{ path('app_species_index') }}">{{ 'back_to_list'|trans }}</a>
{% endblock %}