2012-02-03 20:34:02 -08:00
@using NzbDrone.Web.Helpers
@model NzbDrone.Web.Models.SeasonModel
2012-02-04 19:27:29 -08:00
<h1>
2012-02-03 20:34:02 -08:00
@(Model.SeasonNumber == 0 ? "Specials" : "Season " + Model.SeasonNumber)
2012-02-04 19:27:29 -08:00
</h1>
2012-02-03 20:34:02 -08:00
<table class="seriesTable">
2012-02-03 23:36:52 -08:00
<colgroup>
2012-02-04 19:27:29 -08:00
<col style="width:40px"/>
2012-02-07 14:28:53 -08:00
<col style="width:auto"/>
2012-02-03 23:36:52 -08:00
<col style="width:100px" />
<col style="width:100px" />
<col style="width:110px" />
</colgroup>
2012-02-07 14:28:53 -08:00
<thead>
<tr>
<th>#</th>
<th>Title</th>
<th>Air Date</th>
<th>Quality</th>
2012-02-03 20:34:02 -08:00
2012-02-07 14:28:53 -08:00
@*Commands Column*@
<th>
2012-02-11 15:16:08 -08:00
<img src='../../Content/Images/@(Model.AnyWanted ? "notIgnored" : "ignored").png' class='ignoredEpisodesMaster ignoreEpisode ignoreSeason_@(Model.SeasonNumber) @(Model.AnyWanted ? "" : "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/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)
2012-02-07 14:28:53 -08:00
</th>
</tr>
</thead>
<tbody>
@for (int i = 0; i < Model.Episodes.Count; i++)
2012-02-06 19:48:26 -08:00
{
2012-02-07 14:28:53 -08:00
var episode = Model.Episodes[i];
if (i % 2 == 0)
{
Html.RenderPartial("Episode", episode);
}
2012-02-06 19:48:26 -08:00
2012-02-07 14:28:53 -08:00
else
{
Html.RenderPartial("Episode", episode, new ViewDataDictionary { new KeyValuePair<string, object>("AltRow", true) });
}
2012-02-06 19:48:26 -08:00
}
2012-02-07 14:28:53 -08:00
</tbody>
2012-02-03 20:34:02 -08:00
</table>