This commit is contained in:
ani_konarcheva@abv.bg
2022-03-30 14:25:53 +03:00
parent 436ecf41e6
commit 0f3e02cb92
46 changed files with 1528 additions and 602 deletions

View File

@@ -0,0 +1,33 @@
@model Data.Entities.Rents
@{
ViewData["Title"] = "Delete";
}
<h1>Delete</h1>
<h3>Are you sure you want to delete this?</h3>
<div>
<h4>Rents</h4>
<hr />
<dl class="row">
<dt class = "col-sm-2">
@Html.DisplayNameFor(model => model.StartDate)
</dt>
<dd class = "col-sm-10">
@Html.DisplayFor(model => model.StartDate)
</dd>
<dt class = "col-sm-2">
@Html.DisplayNameFor(model => model.EndDate)
</dt>
<dd class = "col-sm-10">
@Html.DisplayFor(model => model.EndDate)
</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>