|
|
|
@model List<NzbDrone.Web.Models.UpcomingEpisodeModel>
|
|
|
|
@using NzbDrone.Web.Models
|
|
|
|
@section TitleContent{
|
|
|
|
Upcoming
|
|
|
|
}
|
|
|
|
@section ActionMenu{
|
|
|
|
@{Html.Telerik().Menu().Name("historyMenu").Items(
|
|
|
|
items => { items.Add().Text("Start RSS Sync").Action("RssSync", "Series"); }).Render();}
|
|
|
|
}
|
|
|
|
@section MainContent{
|
|
|
|
<div id="yesterday">
|
|
|
|
<h2>
|
|
|
|
Yesterday</h2>
|
|
|
|
@{Html.Telerik().Grid<UpcomingEpisodeModel>().Name("Yesterday").NoRecordsTemplate(
|
|
|
|
"No watched shows aired yesterday")
|
|
|
|
.TableHtmlAttributes(new { @class = "Grid" })
|
|
|
|
.Columns(columns =>
|
|
|
|
{
|
|
|
|
columns.Bound(c => c.SeriesName)
|
|
|
|
.ClientTemplate("<a href=" +
|
|
|
|
Url.Action("Details", "Series", new { seriesId = "<#= SeriesId #>" }) +
|
|
|
|
"><#= SeriesName #></a>")
|
|
|
|
.Title("Series Name");
|
|
|
|
columns.Bound(c => c.SeasonNumber).Title("Season #").Width(40);
|
|
|
|
columns.Bound(c => c.EpisodeNumber).Title("Episode #").Width(40);
|
|
|
|
columns.Bound(c => c.Title).Title("Episode Title");
|
|
|
|
columns.Bound(c => c.AirDate).Title("Air Date").Width(160);
|
|
|
|
})
|
|
|
|
.DetailView(detailView => detailView.ClientTemplate(
|
|
|
|
"<fieldset>" +
|
|
|
|
"<div><b>Overview: </b><#= Overview #></div>" +
|
|
|
|
"</fieldset>"
|
|
|
|
))
|
|
|
|
.DataBinding(data => data.Ajax().Select("_AjaxBindingYesterday", "Upcoming"))
|
|
|
|
.Sortable(rows => rows.OrderBy(epSort => epSort.Add(c => c.AirDate).Ascending()).Enabled(true))
|
|
|
|
//.Pageable(c => c.PageSize(20).Position(GridPagerPosition.Both).Style(GridPagerStyles.PageInput | GridPagerStyles.NextPreviousAndNumeric))
|
|
|
|
//.Filterable()
|
|
|
|
//.ClientEvents(c => c.OnRowDataBound("onRowDataBound"))
|
|
|
|
.Render();}
|
|
|
|
</div>
|
|
|
|
<br />
|
|
|
|
<div id="today">
|
|
|
|
<h2>
|
|
|
|
Today</h2>
|
|
|
|
@{Html.Telerik().Grid<UpcomingEpisodeModel>().Name("Today").NoRecordsTemplate("No watched shows airing today.")
|
|
|
|
.TableHtmlAttributes(new { @class = "Grid" })
|
|
|
|
.Columns(columns =>
|
|
|
|
{
|
|
|
|
columns.Bound(c => c.SeriesName)
|
|
|
|
.ClientTemplate("<a href=" +
|
|
|
|
Url.Action("Details", "Series", new { seriesId = "<#= SeriesId #>" }) +
|
|
|
|
"><#= SeriesName #></a>")
|
|
|
|
.Title("Series Name");
|
|
|
|
columns.Bound(c => c.SeasonNumber).Title("Season #").Width(40);
|
|
|
|
columns.Bound(c => c.EpisodeNumber).Title("Episode #").Width(40);
|
|
|
|
columns.Bound(c => c.Title).Title("Episode Title");
|
|
|
|
columns.Bound(c => c.AirDate).Title("Air Date").Width(160);
|
|
|
|
})
|
|
|
|
.DetailView(detailView => detailView.ClientTemplate(
|
|
|
|
"<fieldset>" +
|
|
|
|
"<div><b>Overview: </b><#= Overview #></div>" +
|
|
|
|
"</fieldset>"
|
|
|
|
))
|
|
|
|
.DataBinding(data => data.Ajax().Select("_AjaxBindingToday", "Upcoming"))
|
|
|
|
.Sortable(rows => rows.OrderBy(epSort => epSort.Add(c => c.AirDate).Ascending()).Enabled(true))
|
|
|
|
.Render();}
|
|
|
|
</div>
|
|
|
|
<br />
|
|
|
|
<div id="week">
|
|
|
|
<h2>
|
|
|
|
7-Day Forecast</h2>
|
|
|
|
@{Html.Telerik().Grid<UpcomingEpisodeModel>().Name("Week").NoRecordsTemplate(
|
|
|
|
"No watched shows airing in the next week...")
|
|
|
|
.TableHtmlAttributes(new { @class = "Grid" })
|
|
|
|
.Columns(columns =>
|
|
|
|
{
|
|
|
|
columns.Bound(c => c.SeriesName)
|
|
|
|
.ClientTemplate("<a href=" +
|
|
|
|
Url.Action("Details", "Series", new { seriesId = "<#= SeriesId #>" }) +
|
|
|
|
"><#= SeriesName #></a>")
|
|
|
|
.Title("Series Name");
|
|
|
|
columns.Bound(c => c.SeasonNumber).Title("Season #").Width(40);
|
|
|
|
columns.Bound(c => c.EpisodeNumber).Title("Episode #").Width(40);
|
|
|
|
columns.Bound(c => c.Title).Title("Episode Title");
|
|
|
|
columns.Bound(c => c.AirDate).Title("Air Date").Width(160);
|
|
|
|
})
|
|
|
|
.DetailView(detailView => detailView.ClientTemplate(
|
|
|
|
"<fieldset>" +
|
|
|
|
"<div><b>Overview: </b><#= Overview #></div>" +
|
|
|
|
"</fieldset>"
|
|
|
|
))
|
|
|
|
.DataBinding(data => data.Ajax().Select("_AjaxBindingWeek", "Upcoming"))
|
|
|
|
.Sortable(rows => rows.OrderBy(epSort => epSort.Add(c => c.AirDate).Ascending()).Enabled(true))
|
|
|
|
.Render();}
|
|
|
|
</div>
|
|
|
|
}
|