|
|
|
@ -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>
|
|
|
|
|
<h2>
|
|
|
|
|
Yesterday</h2>
|
|
|
|
|
<div class="grid-container">
|
|
|
|
|
@{Html.Telerik().Grid<UpcomingEpisodeModel>().Name("Yesterday").NoRecordsTemplate(
|
|
|
|
|
"No watched shows aired yesterday")
|
|
|
|
@ -51,7 +49,8 @@ Upcoming
|
|
|
|
|
</div>
|
|
|
|
|
<br />
|
|
|
|
|
<div id="today">
|
|
|
|
|
<h2>Today</h2>
|
|
|
|
|
<h2>
|
|
|
|
|
Today</h2>
|
|
|
|
|
<div class="grid-container">
|
|
|
|
|
@{Html.Telerik().Grid<UpcomingEpisodeModel>().Name("Today").NoRecordsTemplate("No watched shows airing today.")
|
|
|
|
|
.TableHtmlAttributes(new { @class = "Grid" })
|
|
|
|
@ -85,7 +84,8 @@ Upcoming
|
|
|
|
|
</div>
|
|
|
|
|
<br />
|
|
|
|
|
<div id="tomorrow">
|
|
|
|
|
<h2>Tomorrow</h2>
|
|
|
|
|
<h2>
|
|
|
|
|
Tomorrow</h2>
|
|
|
|
|
<div class="grid-container">
|
|
|
|
|
@{Html.Telerik().Grid<UpcomingEpisodeModel>().Name("Tomorrow").NoRecordsTemplate(
|
|
|
|
|
"No watched shows airing tomorrow")
|
|
|
|
@ -121,7 +121,8 @@ Upcoming
|
|
|
|
|
</div>
|
|
|
|
|
<br />
|
|
|
|
|
<div id="week">
|
|
|
|
|
<h2>Future Forecast</h2>
|
|
|
|
|
<h2>
|
|
|
|
|
Future Forecast</h2>
|
|
|
|
|
<div class="grid-container">
|
|
|
|
|
@{Html.Telerik().Grid<UpcomingEpisodeModel>().Name("Week").NoRecordsTemplate(
|
|
|
|
|
"No watched shows airing in the next week...")
|
|
|
|
@ -154,4 +155,3 @@ Upcoming
|
|
|
|
|
.Render();}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
}
|
|
|
|
|