|
|
|
@ -3,17 +3,15 @@
|
|
|
|
|
@section TitleContent{
|
|
|
|
|
Upcoming
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
<link href="../../Content/Grid.css" rel="stylesheet" type="text/css" />
|
|
|
|
|
|
|
|
|
|
@section ActionMenu{
|
|
|
|
|
<ul class="sub-menu">
|
|
|
|
|
<li>@Ajax.ActionLink("Start RSS Sync", "RssSync", "Command", null, null)</li>
|
|
|
|
|
</ul>
|
|
|
|
|
}
|
|
|
|
|
@section MainContent{
|
|
|
|
|
<div id="yesterday">
|
|
|
|
|
<h2>Yesterday</h2>
|
|
|
|
|
<div id="yesterday">
|
|
|
|
|
<h2>
|
|
|
|
|
Yesterday</h2>
|
|
|
|
|
<div class="grid-container">
|
|
|
|
|
@{Html.Telerik().Grid<UpcomingEpisodeModel>().Name("Yesterday").NoRecordsTemplate(
|
|
|
|
|
"No watched shows aired yesterday")
|
|
|
|
@ -48,10 +46,11 @@ Upcoming
|
|
|
|
|
//.ClientEvents(c => c.OnRowDataBound("onRowDataBound"))
|
|
|
|
|
.Render();}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<br />
|
|
|
|
|
<div id="today">
|
|
|
|
|
<h2>Today</h2>
|
|
|
|
|
</div>
|
|
|
|
|
<br />
|
|
|
|
|
<div id="today">
|
|
|
|
|
<h2>
|
|
|
|
|
Today</h2>
|
|
|
|
|
<div class="grid-container">
|
|
|
|
|
@{Html.Telerik().Grid<UpcomingEpisodeModel>().Name("Today").NoRecordsTemplate("No watched shows airing today.")
|
|
|
|
|
.TableHtmlAttributes(new { @class = "Grid" })
|
|
|
|
@ -82,10 +81,11 @@ Upcoming
|
|
|
|
|
.Sortable(rows => rows.OrderBy(epSort => epSort.Add(c => c.AirDateTime).Ascending()).Enabled(true))
|
|
|
|
|
.Render();}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<br />
|
|
|
|
|
<div id="tomorrow">
|
|
|
|
|
<h2>Tomorrow</h2>
|
|
|
|
|
</div>
|
|
|
|
|
<br />
|
|
|
|
|
<div id="tomorrow">
|
|
|
|
|
<h2>
|
|
|
|
|
Tomorrow</h2>
|
|
|
|
|
<div class="grid-container">
|
|
|
|
|
@{Html.Telerik().Grid<UpcomingEpisodeModel>().Name("Tomorrow").NoRecordsTemplate(
|
|
|
|
|
"No watched shows airing tomorrow")
|
|
|
|
@ -118,10 +118,11 @@ Upcoming
|
|
|
|
|
.Sortable(rows => rows.OrderBy(epSort => epSort.Add(c => c.AirDateTime).Ascending()).Enabled(true))
|
|
|
|
|
.Render();}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<br />
|
|
|
|
|
<div id="week">
|
|
|
|
|
<h2>Future Forecast</h2>
|
|
|
|
|
</div>
|
|
|
|
|
<br />
|
|
|
|
|
<div id="week">
|
|
|
|
|
<h2>
|
|
|
|
|
Future Forecast</h2>
|
|
|
|
|
<div class="grid-container">
|
|
|
|
|
@{Html.Telerik().Grid<UpcomingEpisodeModel>().Name("Week").NoRecordsTemplate(
|
|
|
|
|
"No watched shows airing in the next week...")
|
|
|
|
@ -153,5 +154,4 @@ Upcoming
|
|
|
|
|
.Sortable(rows => rows.OrderBy(epSort => epSort.Add(c => c.AirDateTime).Ascending()).Enabled(true))
|
|
|
|
|
.Render();}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
}
|
|
|
|
|
</div>
|
|
|
|
|