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