@using NzbDrone.Web.Helpers
@model NzbDrone.Web.Models.NotificationSettingsModel
@section HeaderContent{
}
@section TitleContent{
Settings
}
@section ActionMenu{
@{Html.RenderPartial("SubMenu");}
}
@section MainContent{
@using (Html.BeginForm("SaveNotifications", "Settings", FormMethod.Post, new { id = "form", name = "form", @class = "settingsForm" }))
{
Notifications
@{Html.RenderPartial("Xbmc", Model);}
@{Html.RenderPartial("Smtp", Model);}
@{Html.RenderPartial("Growl", Model);}
@{Html.RenderPartial("Prowl", Model);}
}
}
@section Scripts{
}