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

Hej, {{ current_user.username }}

Let’s design a menu for the days ahead.

Personal preferences

{% set fields = [ ('people_count', 'Number of People', [('1 adult', '1 adult'), ('2 adults', '2 adults'), ('Family of 4', 'Family of 4')]), ('budget_level', 'Budget Level', [('Low', 'Low'), ('Medium', 'Medium'), ('High', 'High')]), ('max_cooking_time', 'Max Cooking Time', [('20', '20 min'), ('30', '30 min'), ('45', '45 min'), ('60', '60 min')]), ('skill_level', 'Cooking Skill', [('Beginner (simple steps)', 'Beginner'), ('Intermediate (comfortable with techniques)', 'Intermediate'), ('Expert (advanced methods)', 'Advanced')]), ('dietary_preference', 'Dietary Preference', [('Standard (Omnivore)', 'Standard'), ('Vegetarian', 'Vegetarian'), ('Vegan', 'Vegan'), ('Pescatarian', 'Pescatarian')]), ('dietary_focus', 'Dietary Focus', [('Balanced', 'Balanced'), ('High Protein', 'High Protein'), ('Low Carb', 'Low Carb'), ('Kid-Friendly', 'Kid-Friendly')]) ] %} {% for name, label, options in fields %}
{% endfor %}

Recent Activity

{% for plan in plans %}

{{ plan.description }}

Plan #{{ plan.id }} View Plan β†’
{% else %}

Your culinary history will appear here.

{% endfor %}
{% endblock %}