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

Recipe Overview

Full Library
{% if favorites %}

Favorites

{% for r in favorites %}
{{ cuisine_emoji.get(r.cuisine) }} {{ r.cuisine }}
{{ r.name }}

{{ r.description[:90] }}{% if r.description|length > 90 %}…{% 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 %}
{% endif %} {% if recent %}

Recently Added

{% for r in recent %}
{{ cuisine_emoji.get(r.cuisine) }} {{ r.cuisine }} {% if r.status == 'favorited' %}{% endif %}
{{ r.name }}

{{ r.description[:90] }}{% if r.description|length > 90 %}…{% 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 %}
{% endif %} {% if not favorites and not recent %}

No recipes yet. Add one or use the AI assistant.

{% endif %} {% endblock %}