{% extends "base.html" %} {% block content %}

❤️ My Favorites {{ favorites|length }}

Browse Recipes
{% if not favorites %}
💔

No favorites yet. Browse recipes and tap the heart to save them!

{% else %}
{% for item in favorites %}
{% if item.recipe.image_filename %} {{ item.recipe.title }} {% endif %}
{% if item.recipe.cuisine %} {{ item.recipe.cuisine }} {% endif %} {% if item.recipe.description %}

{{ item.recipe.description[:120] }}{% if item.recipe.description|length > 120 %}…{% endif %}

{% endif %}
❤️ {{ item.fav_count }} {{ item.fav_date.strftime('%b %d, %Y') if item.fav_date else '' }}
{% endfor %}
{% endif %}
{% endblock %}