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

17 lines
298 B
Text
Raw Normal View History

2019-01-01 16:28:47 +00:00
@model RdvQuery
@{
ViewData["Title"] = @SR["Details"];
}
<h2>@ViewData["Title"]</h2>
<div>
<h4>@SR["Command"]</h4>
<hr />
@Html.DisplayFor(m=>m)
</div>
<p>
2019-06-23 00:05:23 +01:00
<a asp-action="Edit" asp-route-id="@Model.Id">@SR["Edit"]</a> |
<a asp-action="Index">@SR["Back to List"]</a>
2019-01-01 16:28:47 +00:00
</p>