@model ExportDeploymentModel @using SmartStore.Core.Domain.DataExchange; @using SmartStore.Admin.Models.DataExchange; @Html.ValidationSummary(false) @Html.HiddenFor(model => model.Id) @Html.HiddenFor(model => model.ProfileId)
| @Html.SmartLabelFor(x => x.DeploymentType) | @Html.DropDownListFor(x => x.DeploymentType, Model.AvailableDeploymentTypes) @Html.ValidationMessageFor(x => x.DeploymentType) |
| @Html.SmartLabelFor(x => x.Name) | @Html.EditorFor(x => x.Name) @Html.ValidationMessageFor(x => x.Name) |
| @Html.SmartLabelFor(x => x.Enabled) | @Html.EditorFor(x => x.Enabled) @Html.ValidationMessageFor(x => x.Enabled) |
| @Html.SmartLabelFor(x => x.CreateZip) | @Html.EditorFor(x => x.CreateZip) @Html.ValidationMessageFor(x => x.CreateZip) |
| @Html.SmartLabelFor(x => x.IsPublic) | @Html.EditorFor(x => x.IsPublic) @Html.ValidationMessageFor(x => x.IsPublic) |
| @Html.SmartLabelFor(x => x.FileSystemPath) | @Html.EditorFor(x => x.FileSystemPath) @Html.ValidationMessageFor(x => x.FileSystemPath) |
| @Html.SmartLabelFor(x => x.EmailAccountId) | @Html.DropDownListFor(x => x.EmailAccountId, Model.AvailableEmailAccounts) @Html.ValidationMessageFor(x => x.EmailAccountId) |
| @Html.SmartLabelFor(x => x.EmailAddresses) | @Html.HiddenFor(x => x.EmailAddresses) @Html.ValidationMessageFor(x => x.EmailAddresses) |
| @Html.SmartLabelFor(x => x.EmailSubject) | @Html.EditorFor(x => x.EmailSubject) @Html.ValidationMessageFor(x => x.EmailSubject) |
| @Html.SmartLabelFor(x => x.Url) | @Html.EditorFor(x => x.Url) @Html.ValidationMessageFor(x => x.Url) |
| @Html.SmartLabelFor(x => x.HttpTransmissionType) | @Html.DropDownListFor(x => x.HttpTransmissionType, Model.AvailableHttpTransmissionTypes) @Html.ValidationMessageFor(x => x.HttpTransmissionType) |
| @Html.SmartLabelFor(x => x.Username) | @Html.TextBoxFor(x => x.Username, new { autocomplete = "off", @class = "text-box single-line" }) @Html.ValidationMessageFor(x => x.Username) |
| @Html.SmartLabelFor(x => x.Password) | @Html.TextBoxFor(x => x.Password, new { autocomplete = "off", type = "password", @class = "text-box single-line password" }) @Html.ValidationMessageFor(x => x.Password) |
| @Html.SmartLabelFor(x => x.PassiveMode) | @Html.EditorFor(x => x.PassiveMode) @Html.ValidationMessageFor(x => x.PassiveMode) |
| @Html.SmartLabelFor(x => x.UseSsl) | @Html.EditorFor(x => x.UseSsl) @Html.ValidationMessageFor(x => x.UseSsl) |