@model CustomerAddressModel @{ //page title ViewBag.Title = T("Admin.Customers.Customers.Addresses.AddNew").Text; } @using (Html.BeginForm()) {
@T("Admin.Customers.Customers.Addresses.AddNew") @Html.ActionLink("(" + T("Admin.Customers.Customers.Addresses.BackToCustomer") + ")", "Edit", new { id = Model.CustomerId })
@Html.Partial("_CreateOrUpdateAddress", Model) }