{% extends "base.html" %} {% block content %}
Hello, {{ current_user.username }}!
{{ today_date.strftime('%A, %B %d') }}
TODAY'S MENU
{% for type in ['Breakfast', 'Lunch', 'Dinner'] %}
{{ type }}
{% if today_meals[type] %} {% for r in today_meals[type] %}
{{ r.title }}
{{ r.prep_time + r.cook_time }}m
{% endfor %} {% else %}
No meal planned
Plan Now {% endif %}
{% endfor %}
{% if today_ingredients %}
PREP FOR TODAY
    {% for item in today_ingredients %}
  • {{ item }}
  • {% endfor %}
{% endif %}
Manage Weekly Plan
{% endblock %}