📚 Mes recettes
{% with messages = get_flashed_messages(with_categories=true) %}
{% if messages %}
{% for category, message in messages %}
{{ message }}
{% endfor %}
{% endif %}
{% endwith %}
{% if search %}
{% if recettes %}
{{ recettes|length }} résultat(s) pour "{{ search }}"
{% else %}
Aucun résultat pour "{{ search }}"
{% endif %}
{% endif %}
{% if recettes %}
{% for recette in recettes %}
{{ recette['nom'] }}
{% if recette['lien'] %}
{% endif %}
{% if recette['ingredients'] %}
Ingrédients :
{{ recette['ingredients'] }}
{% endif %}
{% if recette['instructions'] %}
Instructions :
{{ recette['instructions'] }}
{% endif %}
{% endfor %}
{% else %}
{% if search %}
Aucune recette trouvée. Voir toutes les recettes
{% else %}
Aucune recette pour le moment. Commencez par en ajouter une !
{% endif %}
{% endif %}