forked from wanderer/pwt-0x01-ng
49 lines
1.1 KiB
Plaintext
49 lines
1.1 KiB
Plaintext
@model pwt_0x01_ng.Models.Order
|
|
|
|
@{
|
|
ViewData["Title"] = "Details";
|
|
}
|
|
<h2>@ViewData["Title"]</h2>
|
|
<h3>@ViewData["Message"]</h3>
|
|
|
|
<div>
|
|
<h4>Order</h4>
|
|
<hr />
|
|
<dl class="row">
|
|
<dt class = "col-sm-2">
|
|
@Html.DisplayNameFor(model => model.Order_Number)
|
|
</dt>
|
|
<dd class = "col-sm-10">
|
|
@Html.DisplayFor(model => model.Order_Number)
|
|
</dd>
|
|
<dt class = "col-sm-2">
|
|
@Html.DisplayNameFor(model => model.User_id)
|
|
</dt>
|
|
<dd class = "col-sm-10">
|
|
@Html.DisplayFor(model => model.User_id)
|
|
</dd>
|
|
<dt class = "col-sm-2">
|
|
@Html.DisplayNameFor(model => model.Price_total)
|
|
</dt>
|
|
<dd class = "col-sm-10">
|
|
@Html.DisplayFor(model => model.Price_total)
|
|
</dd>
|
|
<dt class = "col-sm-2">
|
|
@Html.DisplayNameFor(model => model.Created)
|
|
</dt>
|
|
<dd class = "col-sm-10">
|
|
@Html.DisplayFor(model => model.Created)
|
|
</dd>
|
|
<dt class = "col-sm-2">
|
|
@Html.DisplayNameFor(model => model.Updated)
|
|
</dt>
|
|
<dd class = "col-sm-10">
|
|
@Html.DisplayFor(model => model.Updated)
|
|
</dd>
|
|
</dl>
|
|
</div>
|
|
<div>
|
|
<a asp-action="Edit" asp-route-id="@Model.id">Edit</a> |
|
|
<a asp-action="Index">Back to List</a>
|
|
</div>
|