You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
502 B
Twig

{% extends 'base.html.twig' %}
{% block title %}{% if material.id is null %}Création {% else %}Modification{% endif %} matériau - {{ parent() }}{% endblock %}
{% block mainContent %}
<h1>
{% if material.id is null %}
Création nouveau matériau
{% else %}
Modification du matériau "{{ material.name }}"
{% endif %}
</h1>
{{ form(form) }}
<a href="{{ path('config_material_list') }}" class="btn btn-danger">Annuler</a>
{% endblock %}