@model SmartStore.OfflinePayment.Models.ManualConfigurationModel @using SmartStore.Web.Framework; @{ Layout = ""; } @Html.Action("StoreScopeConfiguration", "Setting", new { area = "Admin" }) @using (Html.BeginForm()) {
@Html.SmartLabelFor(model => model.TransactMode) @Html.SettingOverrideCheckbox(model => model.TransactMode) @Html.DropDownListFor(model => model.TransactMode, Model.TransactModeValues)
@Html.SmartLabelFor(model => model.ExcludedCreditCards) @Html.SettingOverrideCheckbox(model => model.ExcludedCreditCards) @Html.ListBoxFor(x => x.ExcludedCreditCards, new MultiSelectList(Model.AvailableCreditCards, "Value", "Text"), new { multiple = "multiple" }) @Html.ValidationMessageFor(model => model.ExcludedCreditCards)
@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)
 
}