Some new icons/ Submenu tweaks.
This commit is contained in:
parent
3b18c9f621
commit
0bb36eb20c
Binary file not shown.
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 534 B |
Binary file not shown.
After Width: | Height: | Size: 800 B |
Binary file not shown.
Before Width: | Height: | Size: 982 B After Width: | Height: | Size: 819 B |
|
@ -47,15 +47,11 @@ namespace NzbDrone.Web.Controllers
|
||||||
return JsonNotificationResult.Info("Queued");
|
return JsonNotificationResult.Info("Queued");
|
||||||
}
|
}
|
||||||
|
|
||||||
public JsonResult ScanDisk(int seriesId)
|
public JsonResult ForceRefresh(int seriesId)
|
||||||
{
|
|
||||||
_jobProvider.QueueJob(typeof(DiskScanJob), seriesId);
|
|
||||||
return JsonNotificationResult.Info("Queued");
|
|
||||||
}
|
|
||||||
|
|
||||||
public JsonResult UpdateInfo(int seriesId)
|
|
||||||
{
|
{
|
||||||
_jobProvider.QueueJob(typeof(UpdateInfoJob), seriesId);
|
_jobProvider.QueueJob(typeof(UpdateInfoJob), seriesId);
|
||||||
|
_jobProvider.QueueJob(typeof(DiskScanJob), seriesId);
|
||||||
|
|
||||||
return JsonNotificationResult.Info("Queued");
|
return JsonNotificationResult.Info("Queued");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -154,6 +154,8 @@
|
||||||
<Content Include="Content\Images\pause.png" />
|
<Content Include="Content\Images\pause.png" />
|
||||||
<Content Include="Content\Images\play.png" />
|
<Content Include="Content\Images\play.png" />
|
||||||
<Content Include="Content\Images\red.png" />
|
<Content Include="Content\Images\red.png" />
|
||||||
|
<Content Include="Content\Images\redownload.png" />
|
||||||
|
<Content Include="Content\Images\settings.png" />
|
||||||
<Content Include="Content\Images\stop.png" />
|
<Content Include="Content\Images\stop.png" />
|
||||||
<Content Include="Content\Images\yellow.png" />
|
<Content Include="Content\Images\yellow.png" />
|
||||||
<Content Include="Content\IndexerSettings.css" />
|
<Content Include="Content\IndexerSettings.css" />
|
||||||
|
@ -501,6 +503,7 @@
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<None Include="Content\DataTables-1.9.0\media\images\Sorting icons.psd" />
|
<None Include="Content\DataTables-1.9.0\media\images\Sorting icons.psd" />
|
||||||
<Content Include="Views\Settings\Plex.cshtml" />
|
<Content Include="Views\Settings\Plex.cshtml" />
|
||||||
|
<Content Include="Views\Shared\NoSeriesBanner.cshtml" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
|
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
|
||||||
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v10.0\WebApplications\Microsoft.WebApplication.targets" />
|
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v10.0\WebApplications\Microsoft.WebApplication.targets" />
|
||||||
|
|
|
@ -1,6 +1,4 @@
|
||||||
@model String
|
@model String
|
||||||
@using NzbDrone.Common
|
|
||||||
@using NzbDrone.Web.Models
|
|
||||||
@using NzbDrone.Web.Helpers
|
@using NzbDrone.Web.Helpers
|
||||||
@{ViewBag.Title = "History";}
|
@{ViewBag.Title = "History";}
|
||||||
@section ActionMenu{
|
@section ActionMenu{
|
||||||
|
@ -65,7 +63,7 @@
|
||||||
"sPaginationType": "four_button",
|
"sPaginationType": "four_button",
|
||||||
"aoColumns": [
|
"aoColumns": [
|
||||||
{ sWidth: '20px', "bSortable": false, "mDataProp": "Indexer", "fnRender": function (row) {
|
{ sWidth: '20px', "bSortable": false, "mDataProp": "Indexer", "fnRender": function (row) {
|
||||||
return "<img src=\"/Content/Images/Indexers/" + row.aData["Indexer"] + ".png\" alt=\"" + row.aData["Indexer"] + "\">";
|
return "<img src='/Content/Images/Indexers/" + row.aData['Indexer'] + ".png' alt=" + row.aData["Indexer"] + ">";
|
||||||
}
|
}
|
||||||
}, //Image
|
}, //Image
|
||||||
{ sWidth: 'auto', "mDataProp": "SeriesTitle" }, //Series Title
|
{ sWidth: 'auto', "mDataProp": "SeriesTitle" }, //Series Title
|
||||||
|
@ -83,7 +81,7 @@
|
||||||
}, //Date
|
}, //Date
|
||||||
{ sWidth: '40px', "mDataProp": "HistoryId", "bSortable": false, "fnRender": function (row) {
|
{ sWidth: '40px', "mDataProp": "HistoryId", "bSortable": false, "fnRender": function (row) {
|
||||||
var deleteImage = "<img src=\"../../Content/Images/X.png\" alt=\"Delete\" title=\"Delete from History\" class=\"gridImage\" onclick=\"deleteHistory(this.parentNode.parentNode, " + row.aData["HistoryId"] + ")\">";
|
var deleteImage = "<img src=\"../../Content/Images/X.png\" alt=\"Delete\" title=\"Delete from History\" class=\"gridImage\" onclick=\"deleteHistory(this.parentNode.parentNode, " + row.aData["HistoryId"] + ")\">";
|
||||||
var redownloadImage = "<img src=\"../../Content/Images/Downloading.png\" alt=\"Redownload\" title=\Redownload Episode\" class=\"gridImage\" onclick=\"redownloadHistory(this.parentNode.parentNode, " + row.aData["HistoryId"] + ", " + row.aData["EpisodeId"] + ")\">";
|
var redownloadImage = "<img src=\"../../Content/Images/redownload.png\" alt=\"Redownload\" title=\Redownload Episode\" class=\"gridImage\" onclick=\"redownloadHistory(this.parentNode.parentNode, " + row.aData["HistoryId"] + ", " + row.aData["EpisodeId"] + ")\">";
|
||||||
|
|
||||||
return deleteImage + redownloadImage;
|
return deleteImage + redownloadImage;
|
||||||
}
|
}
|
||||||
|
|
|
@ -31,9 +31,9 @@
|
||||||
AirDate
|
AirDate
|
||||||
</th>
|
</th>
|
||||||
@*Commands Column*@
|
@*Commands Column*@
|
||||||
<th>
|
<th/>
|
||||||
Actions
|
|
||||||
</th>
|
|
||||||
@*Details Column*@
|
@*Details Column*@
|
||||||
<th style="display: none;">
|
<th style="display: none;">
|
||||||
Details
|
Details
|
||||||
|
|
|
@ -67,11 +67,10 @@
|
||||||
@section ActionMenu
|
@section ActionMenu
|
||||||
{
|
{
|
||||||
<ul class="sub-menu">
|
<ul class="sub-menu">
|
||||||
<li>@Ajax.ActionLink("Scan Disk", "ScanDisk", "Command", new { seriesId = Model.SeriesId }, null)</li>
|
|
||||||
<li>@Ajax.ActionLink("Update Info", "UpdateInfo", "Command", new { seriesId = Model.SeriesId }, null)</li>
|
|
||||||
<li>@Ajax.ActionLink("Search for missing episodes", "BacklogSeries", "Episode", new { seriesId = Model.SeriesId }, null)</li>
|
|
||||||
<li>@Ajax.ActionLink("Rename Episodes", "RenameEpisodes", "Episode", new { seriesId = Model.SeriesId }, null)</li>
|
|
||||||
<li><a class="editButton" value="@Model.SeriesId" rel="@Model.Title">Edit</a></li>
|
<li><a class="editButton" value="@Model.SeriesId" rel="@Model.Title">Edit</a></li>
|
||||||
|
<li>@Ajax.ActionLink("Force Refresh", "ForceRefresh", "Command", new { seriesId = Model.SeriesId }, null)</li>
|
||||||
|
<li>@Ajax.ActionLink("Search for missing episodes", "BacklogSeries", "Episode", new { seriesId = Model.SeriesId }, null)</li>
|
||||||
|
<li>@Ajax.ActionLink("Rename Episode Files", "RenameEpisodes", "Episode", new { seriesId = Model.SeriesId }, null)</li>
|
||||||
</ul>
|
</ul>
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -25,8 +25,8 @@
|
||||||
@*Commands Column*@
|
@*Commands Column*@
|
||||||
<td class="@cellColourClass">
|
<td class="@cellColourClass">
|
||||||
<img src='../../Content/Images/@(Model.Ignored ? "ignored" : "notIgnored").png' class='ignoreEpisode ignoreEpisode_@(Model.SeasonNumber)@(Model.Ignored ? " ignored" : " ") gridImage' id='@Model.EpisodeId' title='Click to toggle episode ignore status' />
|
<img src='../../Content/Images/@(Model.Ignored ? "ignored" : "notIgnored").png' class='ignoreEpisode ignoreEpisode_@(Model.SeasonNumber)@(Model.Ignored ? " ignored" : " ") gridImage' id='@Model.EpisodeId' title='Click to toggle episode ignore status' />
|
||||||
<img src='../../Content/Images/@(Model.Status).png' alt='@Model.Status' title='@Model.Status' class='gridImage status-@Model.Status statusImage' />
|
|
||||||
@Ajax.ImageActionLink("../../Content/Images/Search.png", new { Alt = "Search", Title = "Search for episode", @class = "gridImage" }, "Search", "Episode", new { episodeId = Model.EpisodeId }, null, null)
|
@Ajax.ImageActionLink("../../Content/Images/Search.png", new { Alt = "Search", Title = "Search for episode", @class = "gridImage" }, "Search", "Episode", new { episodeId = Model.EpisodeId }, null, null)
|
||||||
|
<img src='../../Content/Images/@(Model.Status).png' alt='@Model.Status' title='@Model.Status' class='gridImage status-@Model.Status statusImage' />
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="detail-row@(ViewData["AltRow"] == null || !(bool)ViewData["AltRow"] ? "" : " alt-row")">
|
<tr class="detail-row@(ViewData["AltRow"] == null || !(bool)ViewData["AltRow"] ? "" : " alt-row")">
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
<col style="width:auto"/>
|
<col style="width:auto"/>
|
||||||
<col style="width:100px" />
|
<col style="width:100px" />
|
||||||
<col style="width:100px" />
|
<col style="width:100px" />
|
||||||
<col style="width:110px" />
|
<col style="width:90px" />
|
||||||
</colgroup>
|
</colgroup>
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
@ -23,7 +23,6 @@
|
||||||
@*Commands Column*@
|
@*Commands Column*@
|
||||||
<th>
|
<th>
|
||||||
<img src='../../Content/Images/@(Model.Ignored ? "ignored" : "notIgnored").png' class='ignoredEpisodesMaster ignoreEpisode ignoreSeason_@(Model.SeasonNumber)@(Model.Ignored ? " ignored" : " ") gridImage' title='Click to toggle season ignore status' />
|
<img src='../../Content/Images/@(Model.Ignored ? "ignored" : "notIgnored").png' class='ignoredEpisodesMaster ignoreEpisode ignoreSeason_@(Model.SeasonNumber)@(Model.Ignored ? " ignored" : " ") gridImage' title='Click to toggle season ignore status' />
|
||||||
<img src='../../Content/Images/@(Model.CommonStatus).png' alt='Status' title='Season Status' class='gridImage' />
|
|
||||||
@Ajax.ImageActionLink("../../Content/Images/Search.png", new { Alt = "Search", Title = "Search for all episodes in this season", @class = "gridImage" }, "SearchSeason", "Episode", new { SeriesId = Model.SeriesId, SeasonNumber = Model.SeasonNumber }, null, null)
|
@Ajax.ImageActionLink("../../Content/Images/Search.png", new { Alt = "Search", Title = "Search for all episodes in this season", @class = "gridImage" }, "SearchSeason", "Episode", new { SeriesId = Model.SeriesId, SeasonNumber = Model.SeasonNumber }, null, null)
|
||||||
@Ajax.ImageActionLink("../../Content/Images/Rename.png", new { Alt = "Rename", Title = "Rename all episodes in this season", @class = "gridImage" }, "RenameSeason", "Episode", new { SeriesId = Model.SeriesId, SeasonNumber = Model.SeasonNumber }, null, null)
|
@Ajax.ImageActionLink("../../Content/Images/Rename.png", new { Alt = "Rename", Title = "Rename all episodes in this season", @class = "gridImage" }, "RenameSeason", "Episode", new { SeriesId = Model.SeriesId, SeasonNumber = Model.SeasonNumber }, null, null)
|
||||||
</th>
|
</th>
|
||||||
|
|
|
@ -0,0 +1,2 @@
|
||||||
|
|
||||||
|
<div class="infoBox">It looks like you haven't added any series to NzbDrone. @Html.ActionLink("Click here to add one.", "Index", "AddSeries")</div>
|
Loading…
Reference in New Issue