yavsc/Yavsc/Views/Command/Details.cshtml

17 lines
301 B
Text
Raw Normal View History

2017-02-27 19:28:32 +01:00
@model RdvQuery
2016-05-17 18:22:18 +02:00
@{
2017-01-20 14:19:23 +01:00
ViewData["Title"] = @SR["Details"];
2016-05-17 18:22:18 +02:00
}
2017-01-20 14:19:23 +01:00
<h2>@ViewData["Title"]</h2>
2016-05-17 18:22:18 +02:00
<div>
2017-01-20 14:19:23 +01:00
<h4>@SR["Command"]</h4>
2016-05-17 18:22:18 +02:00
<hr />
2017-01-16 15:33:45 +01:00
@Html.DisplayFor(m=>m)
2016-05-17 18:22:18 +02:00
</div>
<p>
<a asp-action="Edit" asp-route-id="@Model.Id">Edit</a> |
<a asp-action="Index">Back to List</a>
</p>