@{ Layout = "~/Administration/Views/Shared/_AdminPopupLayout.cshtml"; } @model OrderModel @{ ViewBag.Title = T("Admin.Orders.Fields.PartialRefund").Text; } @using (Html.BeginForm()) {
@T("Admin.Orders.Fields.PartialRefund")
@Html.ValidationSummary(false) if (ViewBag.RefreshPage == true) { }

@string.Format(T("Admin.Orders.Fields.PartialRefund.OrderInfo").Text, Model.Id)

@Html.SmartLabelFor(model => model.AmountToRefund) @Html.EditorFor(model => model.AmountToRefund)     @string.Format(@T("Admin.Orders.Fields.PartialRefund.AmountToRefund.Max").Text, Model.MaxAmountToRefundFormatted, "")
 
}