mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
48 lines
2.0 KiB
Plaintext
48 lines
2.0 KiB
Plaintext
@using NzbDrone.Web.Helpers
|
|
@model NzbDrone.Web.Models.SeasonModel
|
|
|
|
<h1>
|
|
@(Model.SeasonNumber == 0 ? "Specials" : "Season " + Model.SeasonNumber)
|
|
</h1>
|
|
|
|
<table class="seriesTable">
|
|
<colgroup>
|
|
<col style="width:40px"/>
|
|
<col style="width:auto"/>
|
|
<col style="width:100px" />
|
|
<col style="width:100px" />
|
|
<col style="width:110px" />
|
|
</colgroup>
|
|
<thead>
|
|
<tr>
|
|
<th>#</th>
|
|
<th>Title</th>
|
|
<th>Air Date</th>
|
|
<th>Quality</th>
|
|
|
|
@*Commands Column*@
|
|
<th>
|
|
<img src='../../Content/Images/@(Model.AnyWanted ? "notIgnored" : "ignored").png' class='ignoredEpisodesMaster ignoreEpisode ignoreSeason_@(Model.SeasonNumber) @(Model.AnyWanted ? "" : "ignored")' title='Click to toggle season ignore status' />
|
|
<img src='../../Content/Images/@(Model.CommonStatus).png' alt='Status' title='Season Status' class='statusImage statusImageMaster' />
|
|
@Ajax.ImageActionLink("../../Content/Images/Search.png", new { Alt = "Search", Title = "Search for all episodes in this season", @class = "searchImage searchImageMaster" }, "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 = "renameImage renameImageMaster" }, "RenameSeason", "Episode", new { SeriesId = Model.SeriesId, SeasonNumber = Model.SeasonNumber }, null, null)
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@for (int i = 0; i < Model.Episodes.Count; i++)
|
|
{
|
|
var episode = Model.Episodes[i];
|
|
|
|
if (i % 2 == 0)
|
|
{
|
|
Html.RenderPartial("Episode", episode);
|
|
}
|
|
|
|
else
|
|
{
|
|
Html.RenderPartial("Episode", episode, new ViewDataDictionary { new KeyValuePair<string, object>("AltRow", true) });
|
|
}
|
|
}
|
|
</tbody>
|
|
</table> |