Created
January 17, 2018 14:29
-
-
Save jbogard/d9fd1c1d020af94436b3b7d1aafdbea5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@{ | |
ViewBag.Title = $"Order {Model.OrderNumber}"; | |
} | |
<h2>Order #@Model.OrderNumber Details</h2> | |
<div class="panel panel-default"> | |
<div class="panel-heading"> | |
<h3 class="panel-title">Order details</h3> | |
</div> | |
<div class="panel-body"> | |
<div>Number: @Model.OrderNumber</div> | |
<div>ItemsCount: @Model.OrderItemsCount</div> | |
<div>Status: @Model.ShippingStatus</div> | |
<div>Courier: @Model.ShippingCourier</div> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment