@model WeekPlannerViewModel @{ ViewData["Title"] = "Week Planner"; }
Debug: Model is @(Model == null ? "NULL" : "NOT NULL")
@if (Model != null) {StartDate: @Model.StartDate
CurrentWeekPlan is @(Model.CurrentWeekPlan == null ? "NULL" : "NOT NULL")
}Create a new week plan to start planning your meals.
Week of @Model!.StartDate.ToString("MMMM dd, yyyy")
@(dayPlan.Recipe.Description?.Length > 80 ? dayPlan.Recipe.Description.Substring(0, 80) + "..." : dayPlan.Recipe.Description)
No recipe selected
@if (!string.IsNullOrEmpty(dayPlan.MainIngredient)) { @dayPlan.MainIngredient }