12 lines
312 B
Twig
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 %}
|