You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
91 lines
2.4 KiB
91 lines
2.4 KiB
@using NzbDrone.Web.Helpers
|
|
@model NzbDrone.Web.Models.NotificationSettingsModel
|
|
|
|
@section HeaderContent{
|
|
<link rel="stylesheet" type="text/css" href="../../Content/Settings.css" />
|
|
|
|
<style>
|
|
.notifier
|
|
{
|
|
width: 560px;
|
|
padding: 5px;
|
|
margin-left: -8px;
|
|
overflow: auto;
|
|
}
|
|
|
|
.notifier h4
|
|
{
|
|
font-weight: bold;
|
|
margin-bottom: 0px;
|
|
padding-left: 5px;
|
|
padding-top: 3px;
|
|
}
|
|
|
|
.notifierLine
|
|
{
|
|
font-size:11px;
|
|
color:#666666;
|
|
margin-bottom:20px;
|
|
border-bottom:solid 1px #CCCCCD;
|
|
padding-bottom:10px;
|
|
}
|
|
|
|
#save_button
|
|
{
|
|
margin-top: 10px;
|
|
}
|
|
</style>
|
|
}
|
|
|
|
@section TitleContent{
|
|
Settings > Notifications
|
|
}
|
|
|
|
@section ActionMenu{
|
|
@{Html.RenderPartial("SubMenu");}
|
|
}
|
|
|
|
@section MainContent{
|
|
<div id="stylized">
|
|
@using (Html.BeginForm("SaveNotifications", "Settings", FormMethod.Post, new { id = "form", name = "form", @class = "settingsForm" }))
|
|
{
|
|
<div id="tabs">
|
|
<ul>
|
|
<li><a href="#tabs-xbmc">XBMC</a></li>
|
|
<li><a href="#tabs-smtp">SMTP</a></li>
|
|
<li><a href="#tabs-twitter">Twitter</a></li>
|
|
<li><a href="#tabs-growl">Growl</a></li>
|
|
<li><a href="#tabs-prowl">Prowl</a></li>
|
|
</ul>
|
|
<div id="tabs-xbmc">
|
|
@{Html.RenderPartial("Xbmc", Model);}
|
|
</div>
|
|
<div id="tabs-smtp">
|
|
@{Html.RenderPartial("Smtp", Model);}
|
|
</div>
|
|
<div id="tabs-twitter">
|
|
@{Html.RenderPartial("Twitter", Model);}
|
|
</div>
|
|
<div id="tabs-growl">
|
|
@{Html.RenderPartial("Growl", Model);}
|
|
</div>
|
|
<div id="tabs-prowl">
|
|
@{Html.RenderPartial("Prowl", Model);}
|
|
</div>
|
|
</div>
|
|
|
|
<button type="submit" id="save_button" disabled="disabled">Save</button>
|
|
}
|
|
</div>
|
|
}
|
|
|
|
@section Scripts{
|
|
<script src="../../Scripts/NzbDrone/settingsForm.js" type="text/javascript"></script>
|
|
|
|
<script type="text/javascript">
|
|
$(function () {
|
|
$("#tabs").tabs();
|
|
});
|
|
</script>
|
|
}
|