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
14 lines
326 B
Twig
14 lines
326 B
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %}Edit Species{% endblock %}
|
|
|
|
{% block body %}
|
|
<h1>Edit Species</h1>
|
|
|
|
{{ include('species/_form.html.twig', {'button_label': 'Update'}) }}
|
|
|
|
<a href="{{ path('app_species_index') }}">back to list</a>
|
|
|
|
{{ include('species/_delete_form.html.twig') }}
|
|
{% endblock %}
|