@model turf_tasker.Models.DashboardViewModel @{ ViewData["Title"] = "Dashboard"; }

Lawn Care Dashboard

Your lawn's status at a glance.

Last Mowed

@if (Model.LastMowDate.HasValue) { @Model.LastMowDate.Value.ToString("D") } else { Not yet logged }

Last Watered

@if (Model.LastWaterDate.HasValue) { @Model.LastWaterDate.Value.ToString("D") } else { Not yet logged }

Last Fertilized

@if (Model.LastFertilizeDate.HasValue) { @Model.LastFertilizeDate.Value.ToString("D") } else { Not yet logged }

Last Aeration

@if (Model.LastAerationDate.HasValue) { @Model.LastAerationDate.Value.ToString("D") } else { Not yet logged }

Log a New Activity

Keep your dashboard up to date.

Add New Event