@using HrynCo.NotificationService.DAL.Abstract.Providers @using HrynCo.NotificationService.Web.Controllers.Admin.ViewModels @model EmailChannelEditViewModel @{ Layout = "~/Views/Shared/_EditorLayout.cshtml"; ViewData["Title"] = Model.PageTitle; ViewData["EditorTitle"] = Model.PageTitle; }
@Html.AntiForgeryToken() @if (!ViewData.ModelState.IsValid) {
@foreach (var error in ViewData.ModelState.Values.SelectMany(v => v.Errors)) {
@error.ErrorMessage
}
} @* Channel Settings section *@
Channel Settings
@* SMTP Settings section *@
SMTP Settings
@section FormActions { @if (!Model.IsNew) { } Cancel }
@if (!Model.IsNew) { }