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
2012-09-03 16:26:52 -07:00
<table class="seriesTable" data-season="@Model.SeasonNumber">
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" />
2012-09-03 16:26:52 -07:00
<col style="width:110px" />
2012-02-03 23:36:52 -08:00
</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-10-10 19:02:17 -07: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 00:05:27 -07: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-10 19:02:17 -07: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 00:05:27 -07: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-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>