yavsc/Yavsc/Views/Estimate/Details.cshtml

16 lines
294 B
Text
Raw Normal View History

2016-07-27 11:09:49 +02:00
@model Estimate
2016-05-17 18:22:18 +02:00
@{
ViewData["Title"] = "Details";
}
<h2>Details</h2>
<div>
<h4>Estimate</h4>
<hr />
2017-02-18 03:18:47 +01:00
@Html.DisplayFor(model => model)
2016-05-17 18:22:18 +02:00
<p>
2016-11-06 02:03:36 +01:00
<a asp-action="Edit" asp-route-id="@Model.Id">@SR["Edit"]</a> |
2016-11-30 11:03:45 +01:00
<a asp-action="Index">@SR["Back to List"]</a>
2016-05-17 18:22:18 +02:00
</p>