25 lines
880 B
Plaintext
25 lines
880 B
Plaintext
@{
|
|
Layout = "_AdminPopupLayout";
|
|
}
|
|
@model Nop.Plugin.Shipping.FixedByWeightByTotal.Models.ShippingByWeightByTotalModel
|
|
|
|
<form asp-controller="FixedByWeightByTotal" asp-action="AddRateByWeightByTotalPopup"
|
|
asp-route-btnId="@Context.Request.Query["btnId"]"
|
|
asp-route-formId="@Context.Request.Query["formId"]">
|
|
<div class="content-header clearfix">
|
|
<h1 class="float-left">
|
|
@T("Admin.Common.AddNew")
|
|
</h1>
|
|
<div class="float-right">
|
|
<button type="submit" name="save" class="btn btn-primary">@T("Admin.Common.Save")</button>
|
|
</div>
|
|
</div>
|
|
|
|
<section class="content">
|
|
<div class="container-fluid">
|
|
<div class="form-horizontal">
|
|
@await Html.PartialAsync("~/Plugins/Shipping.FixedByWeightByTotal/Views/_CreateOrUpdateRateByWeightByTotal.cshtml", Model)
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</form> |