@model DataExchangeSettingsModel @{ ViewBag.Title = T("Admin.Common.DataExchange").Text; } @using (Html.BeginForm()) {
@T("Admin.Common.DataExchange")
@Html.Action("StoreScopeConfiguration", "Setting") @Html.ValidationSummary(false)
@Html.SmartLabelFor(model => model.MaxFileNameLength) @Html.SettingEditorFor(model => model.MaxFileNameLength) @Html.ValidationMessageFor(model => model.MaxFileNameLength)
@T("Common.Import")
@Html.SmartLabelFor(model => model.ImageImportFolder) @Html.SettingEditorFor(model => model.ImageImportFolder) @Html.ValidationMessageFor(model => model.ImageImportFolder)
@Html.SmartLabelFor(model => model.ImageDownloadTimeout) @Html.SettingEditorFor(model => model.ImageDownloadTimeout) @Html.ValidationMessageFor(model => model.ImageDownloadTimeout)
}