2012-02-04 07:34:02 +03:00
@using NzbDrone.Web.Helpers
@model NzbDrone.Web.Models.SeasonModel
2012-02-05 06:27:29 +03:00
<h1>
2012-02-04 07:34:02 +03:00
@(Model.SeasonNumber == 0 ? "Specials" : "Season " + Model.SeasonNumber)
2012-02-05 06:27:29 +03:00
</h1>
2012-02-04 07:34:02 +03:00
2012-09-04 02:26:52 +03:00
<table class="seriesTable" data-season="@Model.SeasonNumber">
2012-02-04 10:36:52 +03:00
<colgroup>
2012-02-05 06:27:29 +03:00
<col style="width:40px"/>
2012-02-08 01:28:53 +03:00
<col style="width:auto"/>
2012-02-04 10:36:52 +03:00
<col style="width:100px" />
<col style="width:100px" />
2012-09-04 02:26:52 +03:00
<col style="width:110px" />
2012-02-04 10:36:52 +03:00
</colgroup>
2012-02-08 01:28:53 +03:00
<thead>
<tr>
<th>#</th>
<th>Title</th>
<th>Air Date</th>
<th>Quality</th>
2012-02-04 07:34:02 +03:00
2012-02-08 01:28:53 +03:00
@*Commands Column*@
<th>
2012-10-11 05:02:17 +03:00
<i class="icon-eye-open ignoredEpisodesMaster ignoreEpisode @(Model.Ignored ? " ignored" : " ") gridAction" title="Click to toggle season ignore status" data-season="@Model.SeasonNumber"></i>
2012-10-22 10:05:27 +03:00
@Ajax.IconActionLink("icon-search gridAction", "", "SearchSeason", "Episode", new { SeriesId = Model.SeriesId, seasonnumber = Model.SeasonNumber }, null, new { title = "Search for all episodes in this season" })
2012-10-11 05:02:17 +03:00
<i class="icon-tag changeQuality gridAction" title="Click to change the quality of all episode files in this season" data-changetype="season"></i>
2012-10-22 10:05:27 +03:00
@Ajax.IconActionLink("icon-pencil gridAction", "", "RenameSeason", "Episode", new { SeriesId = Model.SeriesId, seasonnumber = Model.SeasonNumber }, null, new { Title = "Rename all episodes in this season" })
2012-02-08 01:28:53 +03:00
</th>
</tr>
</thead>
<tbody>
@for (int i = 0; i < Model.Episodes.Count; i++)
2012-02-07 06:48:26 +03:00
{
2012-02-08 01:28:53 +03:00
var episode = Model.Episodes[i];
if (i % 2 == 0)
{
Html.RenderPartial("Episode", episode);
}
2012-02-07 06:48:26 +03:00
2012-02-08 01:28:53 +03:00
else
{
Html.RenderPartial("Episode", episode, new ViewDataDictionary { new KeyValuePair<string, object>("AltRow", true) });
}
2012-02-07 06:48:26 +03:00
}
2012-02-08 01:28:53 +03:00
</tbody>
2012-02-04 07:34:02 +03:00
</table>