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

28 lines
639 B
Text
Raw Normal View History

2019-01-01 16:28:47 +00:00
@model RdvQuery
@{
2019-06-23 00:05:23 +01:00
ViewData["Title"] = @SR["Delete"];
2019-01-01 16:28:47 +00:00
}
2019-06-23 00:05:23 +01:00
<h2>@SR["Delete"]</h2>
2019-01-01 16:28:47 +00:00
2019-06-23 00:05:23 +01:00
<h3>@SR["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" /> |
2019-06-23 00:05:23 +01:00
<a asp-action="Index">@SR["Back to List"]</a>
2019-01-01 16:28:47 +00:00
</div>
</form>
</div>