2010-10-21 01:49:23 +00:00
|
|
|
<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage<NzbDrone.Core.Repository.Series>" %>
|
2010-09-24 07:14:42 +00:00
|
|
|
|
2010-10-05 06:21:18 +00:00
|
|
|
<%@ Import Namespace="Telerik.Web.Mvc.UI" %>
|
2010-10-24 07:46:58 +00:00
|
|
|
<%@ Import Namespace="NzbDrone.Core.Repository" %>
|
2010-09-24 07:14:42 +00:00
|
|
|
<asp:Content ID="Content1" ContentPlaceHolderID="TitleContent" runat="server">
|
2010-10-05 06:21:18 +00:00
|
|
|
<%: Model.Title %>
|
2010-09-24 07:14:42 +00:00
|
|
|
</asp:Content>
|
|
|
|
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
|
|
|
|
<fieldset>
|
2010-10-05 06:21:18 +00:00
|
|
|
<div class="display-label">
|
|
|
|
ID</div>
|
|
|
|
<div class="display-field">
|
|
|
|
<%: Model.SeriesId %></div>
|
|
|
|
<div class="display-label">
|
|
|
|
Overview</div>
|
|
|
|
<div class="display-field">
|
|
|
|
<%: Model.Overview %></div>
|
|
|
|
<div class="display-label">
|
|
|
|
Status</div>
|
|
|
|
<div class="display-field">
|
|
|
|
<%: Model.Status %></div>
|
|
|
|
<div class="display-label">
|
|
|
|
AirTimes</div>
|
|
|
|
<div class="display-field">
|
|
|
|
<%: Model.AirTimes %></div>
|
|
|
|
<div class="display-label">
|
|
|
|
Language</div>
|
|
|
|
<div class="display-field">
|
|
|
|
<%: Model.Language.ToUpper() %></div>
|
|
|
|
<div class="display-label">
|
|
|
|
Location</div>
|
|
|
|
<div class="display-field">
|
|
|
|
<%: Model.Path %></div>
|
2010-09-24 07:14:42 +00:00
|
|
|
</fieldset>
|
2010-10-24 07:46:58 +00:00
|
|
|
<%
|
|
|
|
//Normal Seasons
|
|
|
|
foreach (var season in Model.Seasons.Where(s => s.SeasonNumber > 0))
|
2010-10-05 06:21:18 +00:00
|
|
|
{
|
2010-10-24 07:46:58 +00:00
|
|
|
%>
|
|
|
|
<br />
|
|
|
|
<h3>
|
|
|
|
Season
|
|
|
|
<%: season.SeasonNumber %></h3>
|
|
|
|
<%
|
|
|
|
Html.Telerik().Grid(season.Episodes).Name("seasons_" + season.SeasonNumber)
|
|
|
|
.Columns(columns =>
|
|
|
|
{
|
|
|
|
columns.Bound(c => c.SeasonNumber).Width(0).Title("Seasons");
|
|
|
|
columns.Bound(c => c.EpisodeNumber).Width(0).Title("Episode");
|
|
|
|
columns.Bound(c => c.Title);
|
|
|
|
columns.Bound(c => c.AirDate).Format("{0:d}").Width(0);
|
|
|
|
})
|
|
|
|
.DetailView(detailView => detailView.Template(e => Html.RenderPartial("EpisodeDetail", e)))
|
|
|
|
.Sortable(rows => rows.OrderBy(epSort => epSort.Add(c => c.EpisodeNumber)).Enabled(false))
|
|
|
|
.Footer(false)
|
|
|
|
.Render();
|
|
|
|
}
|
|
|
|
|
|
|
|
//Specials
|
|
|
|
var specialSeasons = Model.Seasons.Where(s => s.SeasonNumber == 0).FirstOrDefault();
|
|
|
|
|
|
|
|
if (specialSeasons != null)
|
|
|
|
{
|
|
|
|
%>
|
|
|
|
<br />
|
|
|
|
<h3>
|
|
|
|
Specials</h3>
|
|
|
|
<%
|
2010-10-05 06:21:18 +00:00
|
|
|
|
2010-10-24 07:46:58 +00:00
|
|
|
Html.Telerik().Grid(specialSeasons.Episodes).Name("seasons_specials")
|
|
|
|
.Columns(columns =>
|
|
|
|
{
|
|
|
|
columns.Bound(c => c.EpisodeNumber).Width(0).Title("Episode");
|
|
|
|
columns.Bound(c => c.Title);
|
|
|
|
columns.Bound(c => c.AirDate).Format("{0:d}").Width(0);
|
|
|
|
})
|
|
|
|
.DetailView(detailView => detailView.Template(e => Html.RenderPartial("EpisodeDetail", e)))
|
|
|
|
.Sortable(rows => rows.OrderBy(epSort => epSort.Add(c => c.EpisodeNumber)).Enabled(false))
|
|
|
|
.Footer(false)
|
|
|
|
.Render();
|
|
|
|
}
|
2010-10-05 06:21:18 +00:00
|
|
|
%>
|
2010-09-24 07:14:42 +00:00
|
|
|
<p>
|
2010-10-05 06:21:18 +00:00
|
|
|
<%-- <%: Html.ActionLink("Edit", "Edit", new { /* id=Model.PrimaryKey */ }) %> |--%>
|
2010-10-24 07:46:58 +00:00
|
|
|
<%: Html.ActionLink("Back to Series", "Index") %>
|
2010-09-24 07:14:42 +00:00
|
|
|
</p>
|
|
|
|
</asp:Content>
|