2012-02-04 05:34:02 +01:00
@using NzbDrone.Web.Helpers
@model NzbDrone.Web.Models.SeasonModel
2012-02-05 04:27:29 +01:00
<h1>
2012-02-04 05:34:02 +01:00
@(Model.SeasonNumber == 0 ? "Specials" : "Season " + Model.SeasonNumber)
2012-02-05 04:27:29 +01:00
</h1>
2012-02-04 05:34:02 +01:00
<table class="seriesTable">
2012-02-04 08:36:52 +01:00
<colgroup>
2012-02-05 04:27:29 +01:00
<col style="width:40px"/>
2012-02-07 23:28:53 +01:00
<col style="width:auto"/>
2012-02-04 08:36:52 +01:00
<col style="width:100px" />
<col style="width:100px" />
2012-02-25 17:35:27 +01:00
<col style="width:90px" />
2012-02-04 08:36:52 +01:00
</colgroup>
2012-02-07 23:28:53 +01:00
<thead>
<tr>
<th>#</th>
<th>Title</th>
<th>Air Date</th>
<th>Quality</th>
2012-02-04 05:34:02 +01:00
2012-02-07 23:28:53 +01:00
@*Commands Column*@
<th>
2012-02-25 20:41:48 +01:00
<img src='../../Content/Images/@(Model.Ignored ? "ignored" : "notIgnored").png' class='ignoredEpisodesMaster ignoreEpisode ignoreSeason_@(Model.SeasonNumber)@(Model.Ignored ? " ignored" : " ") gridAction' title='Click to toggle season ignore status' />
2012-02-26 10:32:39 +01:00
@Ajax.ImageActionLink("../../Content/Images/Search.png", new { Alt = "Search", Title = "Search for all episodes in this season", @class = "gridAction" }, "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 = "gridAction" }, "RenameSeason", "Episode", new { SeriesId = Model.SeriesId, SeasonNumber = Model.SeasonNumber }, null, null)
2012-02-07 23:28:53 +01:00
</th>
</tr>
</thead>
<tbody>
@for (int i = 0; i < Model.Episodes.Count; i++)
2012-02-07 04:48:26 +01:00
{
2012-02-07 23:28:53 +01:00
var episode = Model.Episodes[i];
if (i % 2 == 0)
{
Html.RenderPartial("Episode", episode);
}
2012-02-07 04:48:26 +01:00
2012-02-07 23:28:53 +01:00
else
{
Html.RenderPartial("Episode", episode, new ViewDataDictionary { new KeyValuePair<string, object>("AltRow", true) });
}
2012-02-07 04:48:26 +01:00
}
2012-02-07 23:28:53 +01:00
</tbody>
2012-02-04 05:34:02 +01:00
</table>