* Adding slugify parameter transform Fixes #172 * Cleaning up code And slugifying my orders
39 lines
1.9 KiB
Plaintext
39 lines
1.9 KiB
Plaintext
@model IEnumerable<OrderViewModel>
|
|
@{
|
|
ViewData["Title"] = "My Order History";
|
|
}
|
|
|
|
<div class="esh-orders">
|
|
<div class="container">
|
|
<h1>@ViewData["Title"]</h1>
|
|
<article class="esh-orders-titles row">
|
|
<section class="esh-orders-title col-xs-2">Order number</section>
|
|
<section class="esh-orders-title col-xs-4">Date</section>
|
|
<section class="esh-orders-title col-xs-2">Total</section>
|
|
<section class="esh-orders-title col-xs-2">Status</section>
|
|
<section class="esh-orders-title col-xs-2"></section>
|
|
</article>
|
|
@if (Model != null && Model.Any())
|
|
{
|
|
@foreach (var item in Model)
|
|
{
|
|
<article class="esh-orders-items row">
|
|
<section class="esh-orders-item col-xs-2">@Html.DisplayFor(modelItem => item.OrderNumber)</section>
|
|
<section class="esh-orders-item col-xs-4">@Html.DisplayFor(modelItem => item.OrderDate)</section>
|
|
<section class="esh-orders-item col-xs-2">$ @Html.DisplayFor(modelItem => item.Total)</section>
|
|
<section class="esh-orders-item col-xs-2">@Html.DisplayFor(modelItem => item.Status)</section>
|
|
<section class="esh-orders-item col-xs-1">
|
|
<a class="esh-orders-link" asp-controller="Order" asp-action="Detail" asp-route-orderId="@item.OrderNumber">Detail</a>
|
|
</section>
|
|
<section class="esh-orders-item col-xs-1">
|
|
@if (item.Status.ToLower() == "submitted")
|
|
{
|
|
<a class="esh-orders-link" asp-controller="Order" asp-action="cancel" asp-route-orderId="@item.OrderNumber">Cancel</a>
|
|
}
|
|
</section>
|
|
</article>
|
|
}
|
|
}
|
|
</div>
|
|
</div>
|