@model CheckoutShippingMethodModel @using SmartStore.Core.Domain.Orders; @using SmartStore.Web.Models.Checkout; @using SmartStore.Web.Models.Common; @{ Layout = "~/Views/Shared/_Checkout.cshtml"; //title Html.AddTitleParts(T("PageTitle.Checkout").Text); } @section orderProgress{ @Html.Action("CheckoutProgress", "Checkout", new { step = CheckoutProgressStep.Shipping }) }

@T("Checkout.SelectShippingMethod")

@using (Html.BeginForm()) { @Html.Widget("checkout_shipping_method_top")
@if (Model.Warnings.Count == 0) { for (int i = 0; i < Model.ShippingMethods.Count; i++) { var shippingMethod = Model.ShippingMethods[i];
@if (shippingMethod.FeeRaw != 0) {
@shippingMethod.Fee
}
@if (!String.IsNullOrEmpty(shippingMethod.Description)) {
@if (!String.IsNullOrEmpty(shippingMethod.BrandUrl)) {
@shippingMethod.Name
@Html.Raw(shippingMethod.Description)
} else { @Html.Raw(shippingMethod.Description) }
}
} } else {
    @for (int i = 0; i < Model.Warnings.Count; i++) {
  • @Model.Warnings[i]
  • }
}
  @T("Common.Back")
@Html.Widget("checkout_shipping_method_bottom") }