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.
21 lines
562 B
Twig
21 lines
562 B
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %}{% if recipe.id is null %}Création {% else %}Modification{% endif %} recette - {{ parent() }}{% endblock %}
|
|
|
|
{% block mainContent %}
|
|
<h1>
|
|
{% if recipe.id is null %}
|
|
Création nouvelle recette
|
|
{% else %}
|
|
Modification d'une recette
|
|
{% endif %}
|
|
</h1>
|
|
{{ form(form) }}
|
|
<a href="{{ path('config_recipe_list') }}" class="btn btn-danger">Annuler</a>
|
|
{% endblock %}
|
|
|
|
{% block importmap %}
|
|
{{ importmap(['app', 'config_recipe_edit']) }}
|
|
{% endblock %}
|
|
|