@using SmartStore.PayPal.Models; @using SmartStore.Web.Framework; @model PayPalStandardConfigurationModel @{ Layout = ""; }
@Html.Raw(T("Plugins.Payments.PayPalStandard.AdminInstruction"))
@Html.Action("StoreScopeConfiguration", "Setting", new { area = "Admin" }) @using (Html.BeginForm()) {
@Html.SmartLabelFor(model => model.SecurityProtocol) @Html.DropDownListFor(model => model.SecurityProtocol, Model.AvailableSecurityProtocols, T("Common.Unspecified"))
@Html.SmartLabelFor(model => model.UseSandbox) @*multistore context not possible, see IPN handling*@ @Html.EditorFor(model => model.UseSandbox) @Html.ValidationMessageFor(model => model.UseSandbox)
@Html.SmartLabelFor(model => model.BusinessEmail) @Html.SettingEditorFor(model => model.BusinessEmail) @Html.ValidationMessageFor(model => model.BusinessEmail)
@Html.SmartLabelFor(model => model.PdtToken) @Html.SettingEditorFor(model => model.PdtToken) @Html.ValidationMessageFor(model => model.PdtToken)
@Html.SmartLabelFor(model => model.PdtValidateOrderTotal) @Html.SettingEditorFor(model => model.PdtValidateOrderTotal) @Html.ValidationMessageFor(model => model.PdtValidateOrderTotal)
@Html.SmartLabelFor(model => model.PdtValidateOnlyWarn) @Html.SettingEditorFor(model => model.PdtValidateOnlyWarn) @Html.ValidationMessageFor(model => model.PdtValidateOnlyWarn)
@Html.SmartLabelFor(model => model.AdditionalFee) @Html.SettingEditorFor(model => model.AdditionalFee) @Html.ValidationMessageFor(model => model.AdditionalFee)
@Html.SmartLabelFor(model => model.AdditionalFeePercentage) @Html.SettingEditorFor(model => model.AdditionalFeePercentage) @Html.ValidationMessageFor(model => model.AdditionalFeePercentage)
@Html.SmartLabelFor(model => model.PassProductNamesAndTotals) @Html.SettingEditorFor(model => model.PassProductNamesAndTotals) @Html.ValidationMessageFor(model => model.PassProductNamesAndTotals)
@Html.SmartLabelFor(model => model.EnableIpn) @Html.SettingEditorFor(model => model.EnableIpn) @Html.ValidationMessageFor(model => model.EnableIpn)
@Html.SmartLabelFor(model => model.IpnChangesPaymentStatus) @Html.SettingEditorFor(model => model.IpnChangesPaymentStatus) @Html.ValidationMessageFor(model => model.IpnChangesPaymentStatus)
@Html.SmartLabelFor(model => model.IpnUrl) @Html.SettingEditorFor(model => model.IpnUrl) @Html.ValidationMessageFor(model => model.IpnUrl)
@T("Plugins.Payments.PayPalStandard.Fields.EnableIpn.Hint2")
 
}