@model NzbDrone.Web.Models.NotificationSettingsModel
@{ Layout = "~/Views/Shared/_RefrenceLayout.cshtml"; }
@section HeaderContent{
}
@using (Html.BeginForm("SaveNotifications", "Settings", FormMethod.Post, new { id = "NotificationForm", name = "NotificationForm", @class = "settingsForm" }))
{
@{Html.RenderPartial("Xbmc", Model);}
@{Html.RenderPartial("Smtp", Model);}
@{Html.RenderPartial("Twitter", Model);}
@{Html.RenderPartial("Growl", Model);}
@{Html.RenderPartial("Prowl", Model);}
}
@section Scripts{
}