Added Submenu to Missing, allows triggering of a backlog search as well as RSS Sync.
Removed unneeded cshtml file.
This commit is contained in:
parent
72c555f250
commit
10fc9a1981
|
@ -26,6 +26,12 @@ namespace NzbDrone.Web.Controllers
|
||||||
return new JsonResult { Data = "ok", JsonRequestBehavior = JsonRequestBehavior.AllowGet };
|
return new JsonResult { Data = "ok", JsonRequestBehavior = JsonRequestBehavior.AllowGet };
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public JsonResult BacklogSearch()
|
||||||
|
{
|
||||||
|
_jobProvider.QueueJob(typeof(BacklogSearchJob));
|
||||||
|
return new JsonResult { Data = "ok", JsonRequestBehavior = JsonRequestBehavior.AllowGet };
|
||||||
|
}
|
||||||
|
|
||||||
public JsonResult SyncEpisodesOnDisk(int seriesId)
|
public JsonResult SyncEpisodesOnDisk(int seriesId)
|
||||||
{
|
{
|
||||||
//Syncs the episodes on disk for the specified series
|
//Syncs the episodes on disk for the specified series
|
||||||
|
|
|
@ -752,9 +752,6 @@
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Content Include="Views\Series\EditorTemplates\SeriesModel.cshtml" />
|
<Content Include="Views\Series\EditorTemplates\SeriesModel.cshtml" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
|
||||||
<Content Include="Views\Series\SingleSeason.cshtml" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Content Include="Views\AddSeries\ExistingSeries.cshtml" />
|
<Content Include="Views\AddSeries\ExistingSeries.cshtml" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
|
@ -7,6 +7,13 @@ Missing
|
||||||
|
|
||||||
<link href="../../Content/Grid.css" rel="stylesheet" type="text/css" />
|
<link href="../../Content/Grid.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
|
@section ActionMenu{
|
||||||
|
<ul class="sub-menu">
|
||||||
|
<li>@Ajax.ActionLink("Start RSS Sync", "RssSync", "Command", null, null)</li>
|
||||||
|
<li>@Ajax.ActionLink("Start Backlog Search", "BacklogSearch", "Command", null, null)</li>
|
||||||
|
</ul>
|
||||||
|
}
|
||||||
|
|
||||||
@section MainContent{
|
@section MainContent{
|
||||||
@{Html.Telerik().Grid<MissingEpisodeModel>().Name("missing")
|
@{Html.Telerik().Grid<MissingEpisodeModel>().Name("missing")
|
||||||
.TableHtmlAttributes(new { @class = "Grid" })
|
.TableHtmlAttributes(new { @class = "Grid" })
|
||||||
|
|
|
@ -1,18 +0,0 @@
|
||||||
@using NzbDrone.Web.Helpers;
|
|
||||||
@using NzbDrone.Web.Models;
|
|
||||||
@model SeasonEditModel
|
|
||||||
|
|
||||||
@using (Html.BeginCollectionItem("SeasonEditor"))
|
|
||||||
{
|
|
||||||
var idClean = ViewData.TemplateInfo.HtmlFieldPrefix.Replace('[', '_').Replace(']', '_');
|
|
||||||
|
|
||||||
<fieldset style="display: inline; border-color: lightgrey; width: 22.8%; margin-bottom: 2px; margin-right: 0px; margin-left: 0px; padding-bottom: 1px; padding-top: 1px; padding-left: 2px; padding-right: 2px;">
|
|
||||||
|
|
||||||
@Html.DisplayFor(m => m.SeasonString)
|
|
||||||
<span style="float: right;">@Html.CheckBoxFor(m => m.Monitored, new { @class = "chkbox" })</span>
|
|
||||||
|
|
||||||
@Html.HiddenFor(m => m.SeriesId)
|
|
||||||
@Html.HiddenFor(m => m.SeasonNumber)
|
|
||||||
@Html.Hidden(idClean, new { @class = "cleanId", })
|
|
||||||
</fieldset>
|
|
||||||
}
|
|
Loading…
Reference in New Issue