yavsc/src/Yavsc/Views/Command/Delete.cshtml

28 lines
613 B
Text
Raw Normal View History

2019-01-01 16:28:47 +00:00
@model RdvQuery
@{
2023-03-20 09:13:16 +00:00
ViewData["Title"] = "Delete";
2019-01-01 16:28:47 +00:00
}
2023-03-20 09:13:16 +00:00
<h2>Delete</h2>
2019-01-01 16:28:47 +00:00
2023-03-20 09:13:16 +00:00
<h3>AreYourSureYouWantToDeleteThis</h3>
2019-01-01 16:28:47 +00:00
<div>
<h4>Command</h4>
<hr />
<dl class="dl-horizontal">
<dt>
@Html.DisplayNameFor(model => model.ValidationDate)
</dt>
<dd>
@Html.DisplayFor(model => model.ValidationDate)
</dd>
</dl>
<form asp-action="Delete">
<div class="form-actions no-color">
<input type="submit" value="Delete" class="btn btn-default" /> |
2023-03-20 09:13:16 +00:00
<a asp-action="Index">Back to List</a>
2019-01-01 16:28:47 +00:00
</div>
</form>
</div>