{% extends "base.html" %} {% block title %}Recipes — Menu Planner{% endblock %} {% block content %}

Recipe Library

{{ recipes | length }} recipes
All {% for c in cuisines %} {{ cuisine_emoji[c] }} {{ c }} {% endfor %}
{% if recipes %}
{% for r in recipes %}
{{ cuisine_emoji.get(r.cuisine, '') }} {{ r.cuisine }} {% if r.status == 'favorited' %} {% elif r.status == 'ignored' %} {% endif %}
{{ r.name }}

{{ r.description[:100] }}{% if r.description|length > 100 %}…{% endif %}

{% if r.added_by %}

{{ r.added_by }}

{% endif %} {% if r.rating %}
{% for i in range(1,6) %}{% endfor %}
{% endif %}
{{ r.calories_per_serving|int }} cal {{ r.carbs_per_serving|int }}g carbs {{ r.prep_time + r.cook_time }} min
{% endfor %}
{% else %}

No recipes found. Try adjusting the filters.

{% endif %} {% endblock %} {% block scripts %} {% endblock %}