Init commit

This commit is contained in:
Blake Ridgway 2025-06-17 13:22:51 -05:00
parent 9ab798fd0f
commit 1f50fedb80
87 changed files with 75678 additions and 0 deletions

View file

@ -0,0 +1,45 @@
@model turf_tasker.Models.LawnCareEvent
@{
ViewData["Title"] = "Delete";
}
<h1>Delete</h1>
<h3>Are you sure you want to delete this?</h3>
<div>
<h4>Lawn Care Event</h4>
<hr />
<dl class="row">
<dt class = "col-sm-2">
@Html.DisplayNameFor(model => model.EventType)
</dt>
<dd class = "col-sm-10">
@Html.DisplayFor(model => model.EventType)
</dd>
<dt class = "col-sm-2">
@Html.DisplayNameFor(model => model.EventDate)
</dt>
<dd class = "col-sm-10">
@Html.DisplayFor(model => model.EventDate)
</dd>
<dt class = "col-sm-2">
@Html.DisplayNameFor(model => model.MowingPattern)
</dt>
<dd class = "col-sm-10">
@Html.DisplayFor(model => model.MowingPattern)
</dd>
<dt class = "col-sm-2">
@Html.DisplayNameFor(model => model.Notes)
</dt>
<dd class = "col-sm-10">
@Html.DisplayFor(model => model.Notes)
</dd>
</dl>
<form asp-action="Delete">
<input type="hidden" asp-for="Id" />
<input type="submit" value="Delete" class="btn btn-danger" /> |
<a asp-action="Index">Back to List</a>
</form>
</div>