Files
herbarium/templates/species/new.html.twig
clfreville2 49d60871c9 Add post and species forms
Squashed commit of the following:
Author: Hugo PRADIER <Hugo.PRADIER2@etu.uca.fr>
Author: bastien ollier <bastien.ollier@etu.uca.fr>
Author: clfreville2 <clement.freville2@etu.uca.fr>
Reviewed on #7
2024-06-07 18:31:20 +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 %}