đŊī¸ Configure Day Plan
đ Week Overview
Day: @Model.DayOfWeek
Date: @Model.Date.ToString("MMM dd, yyyy")
@if (!string.IsNullOrEmpty(Model.SelectedMainIngredient)) {Main Ingredient: @Model.SelectedMainIngredient
} @if (Model.SuggestedRecipes != null && Model.SuggestedRecipes.Any()) {Available Recipes: @Model.SuggestedRecipes.Count
}đĄ Tips
- Choose a main ingredient to see relevant recipes
- Add ingredients to avoid (allergies, dislikes)
- Specify required ingredients for specific dishes
- Use "Random Recipe" for variety in your week
đŊī¸ Recipe Suggestions
@foreach (var recipe in Model.SuggestedRecipes.Take(5))
{
@recipe.Title
@if (!string.IsNullOrEmpty(recipe.Time))
{
@recipe.Time min
}
}
@if (Model.SuggestedRecipes.Count > 5)
{
... and @(Model.SuggestedRecipes.Count - 5) more
}