2012-01-30 02:38:44 +01:00
|
|
|
@using NzbDrone.Common
|
2011-12-12 22:52:29 +01:00
|
|
|
@using NzbDrone.Web.Helpers
|
2011-05-10 08:32:33 +02:00
|
|
|
@using NzbDrone.Web.Models;
|
2012-02-05 21:17:23 +01:00
|
|
|
@model IEnumerable<NzbDrone.Web.Models.SeriesModel>
|
2011-12-10 06:05:17 +01:00
|
|
|
@{ViewBag.Title = "NzbDrone";}
|
2011-12-12 22:52:29 +01:00
|
|
|
|
|
|
|
@section HeaderContent
|
|
|
|
{
|
|
|
|
@Html.IncludeCss("Settings.css")
|
|
|
|
}
|
2012-02-05 21:17:23 +01:00
|
|
|
<style>
|
|
|
|
.ui-progressbar
|
2011-06-25 03:20:52 +02:00
|
|
|
{
|
2012-02-05 21:17:23 +01:00
|
|
|
position:relative;
|
|
|
|
width: 125px;
|
2011-06-25 03:20:52 +02:00
|
|
|
height: 20px;
|
2012-02-05 21:17:23 +01:00
|
|
|
background-color: transparent;
|
|
|
|
border: 1px solid #065EFE;
|
|
|
|
margin: 2px;
|
2011-06-25 03:20:52 +02:00
|
|
|
}
|
2011-06-02 06:40:06 +02:00
|
|
|
|
2012-02-05 21:17:23 +01:00
|
|
|
.progressBarText
|
2011-06-25 03:20:52 +02:00
|
|
|
{
|
|
|
|
position: absolute;
|
2012-02-05 21:17:23 +01:00
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ui-progressbar-value
|
|
|
|
{
|
2011-06-25 03:20:52 +02:00
|
|
|
overflow: hidden;
|
2012-02-05 21:17:23 +01:00
|
|
|
border: 1px solid #065EFE;
|
2011-06-25 03:20:52 +02:00
|
|
|
}
|
2012-02-05 21:17:23 +01:00
|
|
|
|
|
|
|
.ui-progressbar-value .progressBarText
|
2011-06-25 03:20:52 +02:00
|
|
|
{
|
2012-02-05 21:17:23 +01:00
|
|
|
position: relative;
|
|
|
|
font-weight: normal;
|
2011-06-25 03:20:52 +02:00
|
|
|
color: white;
|
|
|
|
}
|
2012-02-05 21:17:23 +01:00
|
|
|
|
|
|
|
/* Set the row height so it won't resize when the progress bar is created */
|
|
|
|
.seriesTable tr
|
2011-06-25 03:20:52 +02:00
|
|
|
{
|
2012-02-05 21:17:23 +01:00
|
|
|
height: 28px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.editButton, .deleteButton
|
|
|
|
{
|
|
|
|
width: 18px;
|
|
|
|
height: 18px;
|
|
|
|
padding: 3px 1px;
|
|
|
|
margin: 0px;
|
|
|
|
vertical-align: middle;
|
2011-06-25 03:20:52 +02:00
|
|
|
}
|
2011-07-03 21:02:33 +02:00
|
|
|
|
2012-02-05 21:17:23 +01:00
|
|
|
.editButton:hover, .deleteButton:hover
|
2011-07-03 21:02:33 +02:00
|
|
|
{
|
2012-02-05 21:17:23 +01:00
|
|
|
background-color: #065EFE;
|
2011-07-03 21:02:33 +02:00
|
|
|
}
|
2011-06-02 05:36:30 +02:00
|
|
|
</style>
|
2011-04-21 09:14:47 +02:00
|
|
|
@section ActionMenu{
|
2011-08-22 04:56:04 +02:00
|
|
|
<ul class="sub-menu">
|
2011-08-06 04:04:35 +02:00
|
|
|
<li>@Html.ActionLink("Add Series", "Index", "AddSeries")</li>
|
|
|
|
<li>@Ajax.ActionLink("Start RSS Sync", "RssSync", "Command", null)</li>
|
|
|
|
</ul>
|
2011-04-21 09:14:47 +02:00
|
|
|
}
|
2012-02-05 21:17:23 +01:00
|
|
|
|
|
|
|
<table class="seriesTable">
|
|
|
|
<colgroup>
|
|
|
|
<col/>
|
|
|
|
<col style="width:100px" />
|
|
|
|
<col style="width:100px" />
|
|
|
|
<col style="width:100px" />
|
|
|
|
<col style="width:100px" />
|
|
|
|
<col style="width:140px" />
|
|
|
|
<col style="width:100px" />
|
|
|
|
</colgroup>
|
|
|
|
<tr>
|
|
|
|
<th>Title</th>
|
|
|
|
<th>Seasons</th>
|
|
|
|
<th>Quality</th>
|
|
|
|
<th>Status</th>
|
|
|
|
<th>Next Airing</th>
|
|
|
|
<th>Episodes</th>
|
|
|
|
|
|
|
|
@*Commands Column*@
|
|
|
|
<th>
|
|
|
|
Commands
|
|
|
|
</th>
|
|
|
|
</tr>
|
|
|
|
@foreach (var series in Model)
|
|
|
|
{
|
|
|
|
Html.RenderPartial("Series", series);
|
|
|
|
}
|
|
|
|
</table>
|
|
|
|
|
|
|
|
<div id="seriesEditor" title="Edit Series"></div>
|
|
|
|
<div id="seriesDelete" title="Delete Series">
|
|
|
|
<input class="seriesId" type="hidden" value="">
|
|
|
|
Are you sure you want to delete '<span class="seriesTitle"></span>'?
|
|
|
|
</div>
|
2011-06-28 03:23:22 +02:00
|
|
|
@section Scripts{
|
|
|
|
<script type="text/javascript">
|
2012-02-05 21:17:23 +01:00
|
|
|
var seriesEditorUrl = './Series/SeriesEditor';
|
|
|
|
var saveSeriesEditorUrl = './Series/SaveSeriesEditor';
|
|
|
|
var seriesDeleteUrl = './Series/DeleteSeries';
|
|
|
|
|
|
|
|
$(document).ready(function () {
|
|
|
|
$(".progressBar").each(function () {
|
|
|
|
var element = this;
|
|
|
|
|
|
|
|
var progressbar = $(element).progressbar({
|
|
|
|
value: parseInt($(element).attr("value"))
|
2011-06-23 08:56:17 +02:00
|
|
|
});
|
2012-02-05 21:17:23 +01:00
|
|
|
var label = progressbar.find('.progressBarText').clone().width(progressbar.width());
|
|
|
|
progressbar.find('.ui-progressbar-value').append(label);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
$("#seriesEditor").dialog({
|
|
|
|
autoOpen: false,
|
|
|
|
height: 350,
|
|
|
|
width: 670,
|
|
|
|
resizable: false,
|
|
|
|
modal: true,
|
|
|
|
buttons: {
|
|
|
|
"Save": function () {
|
|
|
|
//Save the form
|
|
|
|
$('#SeriesEditorForm').submit();
|
|
|
|
$(this).dialog("close");
|
|
|
|
},
|
|
|
|
Cancel: function () {
|
|
|
|
$(this).dialog("close");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
$("#seriesDelete").dialog({
|
|
|
|
autoOpen: false,
|
|
|
|
resizable: false,
|
|
|
|
height: 170,
|
|
|
|
width: 450,
|
|
|
|
modal: true,
|
|
|
|
buttons: {
|
|
|
|
"Delete": function () {
|
|
|
|
var seriesId = $('.seriesId').val();
|
|
|
|
|
|
|
|
$.ajax({
|
|
|
|
type: "POST",
|
|
|
|
url: seriesDeleteUrl,
|
|
|
|
data: { seriesId: seriesId },
|
|
|
|
success: function (data) {
|
|
|
|
//Remove the row from the grid... along with the details row
|
|
|
|
$('.' + seriesId).hide();
|
|
|
|
$('.details_' + seriesId).hide();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
$(this).dialog("close");
|
|
|
|
},
|
|
|
|
Cancel: function () {
|
|
|
|
$(this).dialog("close");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
$(".editButton")
|
|
|
|
//.button()
|
|
|
|
.live('click', function () {
|
|
|
|
//Get the SeriesId and Title
|
|
|
|
var seriesId = parseInt($(this).attr("value"));
|
|
|
|
var title = $(this).attr("rel");
|
|
|
|
|
|
|
|
//Set the title of the dialog
|
|
|
|
$("#seriesEditor").dialog("option", "title", "Edit Series: " + title);
|
|
|
|
|
|
|
|
//Pre-populate the view with ajax
|
|
|
|
$('#seriesEditor').html('<div style="text-align: center; width: 100%; height: 100%;"><img src="../../Content/Images/ajax-loader.gif" style="padding-top: 120px;" /></div>');
|
|
|
|
|
|
|
|
//Get the view
|
|
|
|
$.ajax({
|
|
|
|
url: seriesEditorUrl,
|
|
|
|
data: { seriesId: seriesId },
|
|
|
|
success: function (data) {
|
|
|
|
$('#seriesEditor').html(data);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
//Open the dialog
|
|
|
|
$("#seriesEditor").dialog("open");
|
|
|
|
});
|
|
|
|
|
|
|
|
$(".deleteButton")
|
|
|
|
//.button()
|
|
|
|
.live('click', function () {
|
|
|
|
//Get the SeriesId and Title
|
|
|
|
var seriesId = parseInt($(this).attr("value"));
|
|
|
|
var title = $(this).attr("rel");
|
|
|
|
|
|
|
|
//Set the title of the dialog
|
|
|
|
//$("#seriesDelete").dialog("option", "title", "Delete Series: " + title);
|
|
|
|
|
|
|
|
//Fill in the view
|
|
|
|
$('#seriesDelete').children('.seriesId').val(seriesId);
|
|
|
|
$('#seriesDelete').children('.seriesTitle').html(title);
|
|
|
|
|
|
|
|
//Open the dialog
|
|
|
|
$("#seriesDelete").dialog("open");
|
|
|
|
});
|
2011-06-28 03:23:22 +02:00
|
|
|
</script>
|
|
|
|
}
|