{% extends 'base.html.twig' %} {% block title %}Modifier — {{ recipe.title }}{% endblock %} {% block body %}

Modifier la recette

Retour
{{ form_start(form, {'attr': {'enctype': 'multipart/form-data'}}) }} {# ── INFOS GÉNÉRALES ── #}
Informations générales
{{ form_row(form.title) }}
{{ form_row(form.description) }}
{{ form_row(form.difficulty) }}
{{ form_row(form.prepTime) }}
{{ form_row(form.cookTime) }}
{{ form_row(form.servings) }}
{# ── CATÉGORIES ── #}
Catégories
{{ form_widget(form.categories, {'attr': {'class': 'form-select', 'size': '5'}}) }}
Maintiens Ctrl (ou Cmd) pour sélectionner plusieurs catégories.
{{ form_errors(form.categories) }}
{# ── INGRÉDIENTS ── #}
Ingrédients
{% for i, ingredient in recipe.ingredients %}
{% else %}
{% endfor %}
{# ── ÉTAPES ── #}
Étapes de préparation
{% for i, step in recipe.steps %}
Étape {{ i + 1 }}
{% if step.photos is not empty %}
{% for photo in step.photos %}
{% endfor %}
{% endif %}
{% else %}
Étape 1
{% endfor %}
{# ── PHOTOS RECETTE ── #}
Photos de la recette
{% if recipe.photos is not empty %}
{% for photo in recipe.photos %}
{% endfor %}
{% endif %}
La première photo sera la photo de couverture.
{# ── SOURCE ── #}
Source (optionnel)
{{ form_row(form.sourceUrl) }}
{{ form_row(form.sourceLabel) }}
{# ── ACTIONS ── #}
Annuler
{{ form_end(form) }}
{% endblock %} {% block javascripts %} {% endblock %}