yavsc/src/Yavsc.Org/Views/Command/Details.cshtml

17 lines
272 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"] = "Details";
2019-01-01 16:28:47 +00:00
}
<h2>@ViewData["Title"]</h2>
<div>
2023-03-20 09:13:16 +00:00
<h4>Command</h4>
2019-01-01 16:28:47 +00:00
<hr />
@Html.DisplayFor(m=>m)
</div>
<p>
2023-03-20 09:13:16 +00:00
<a asp-action="Edit" asp-route-id="@Model.Id">Edit</a> |
<a asp-action="Index">Back to List</a>
2019-01-01 16:28:47 +00:00
</p>