2011-05-01 08:05:28 +00:00
@model List<MissingEpisodeModel>
2011-12-09 04:57:23 +00:00
@using NzbDrone.Web.Helpers
2011-05-01 08:05:28 +00:00
@using NzbDrone.Web.Models;
2011-12-12 06:05:40 +00:00
@{ViewBag.Title="Missing";}
2011-12-09 04:57:23 +00:00
@section HeaderContent
{
@Html.IncludeCss("Grid.css")
}
2011-10-21 23:33:54 +00:00
@section ActionMenu{
<ul class="sub-menu">
<li>@Ajax.ActionLink("Start RSS Sync", "RssSync", "Command", null, null)</li>
2012-01-25 01:21:20 +00:00
<li>@Ajax.ActionLink("Start Backlog Search", "BacklogSearch", "Command", null, null, new { title = "Backlog search for ALL missing episodes" })</li>
<li>@Ajax.ActionLink("Start Recent Backlog Search", "RecentBacklogSearch", "Command", null, null, new { title = "Backlog search for missing episodes that aired in the last 30 days only" })</li>
2011-10-21 23:33:54 +00:00
</ul>
}
2011-12-01 05:25:01 +00:00
@{Html.Telerik().Grid<MissingEpisodeModel>().Name("missing")
2011-05-01 08:05:28 +00:00
.TableHtmlAttributes(new { @class = "Grid" })
.Columns(columns =>
{
2011-08-31 00:15:22 +00:00
columns.Bound(c => c.SeriesTitle)
.ClientTemplate("<a href=" +
Url.Action("Details", "Series", new { seriesId = "<#= SeriesId #>" }) +
"><#= SeriesTitle #></a>")
.Title("Series Title");
2011-12-08 06:26:26 +00:00
columns.Bound(c => c.SeasonNumber).Title("Season #").Width(85);
columns.Bound(c => c.EpisodeNumber).Title("Episode #").Width(85);
2011-05-01 08:05:28 +00:00
columns.Bound(c => c.EpisodeTitle).Title("Episode Title");
2011-09-30 16:18:13 +00:00
columns.Bound(c => c.AirDate)
.ClientTemplate("<#= AirDateString #>")
2011-05-03 06:03:49 +00:00
.Title("Air Date")
2011-12-08 06:26:26 +00:00
.Width(90);
2011-08-31 00:15:22 +00:00
columns.Bound(c => c.EpisodeId)
.Title("Actions")
2011-12-15 08:47:32 +00:00
.ClientTemplate(Ajax.ImageActionLink("../../Content/Images/Search.png", new { Alt = "Search", Title = "Search for episode", @class = "searchImage" }, "Search", "Episode", new { EpisodeId = "<#= EpisodeId #>" }, null, null).ToString())
2011-08-31 00:15:22 +00:00
.Width("40");
2011-05-01 08:05:28 +00:00
})
.DetailView(detailView => detailView.ClientTemplate(
"<fieldset>" +
"<div><b>Overview: </b><#= Overview #></div>" +
"</fieldset>"
))
.DataBinding(data => data.Ajax().Select("_AjaxBinding", "Missing"))
.Sortable(rows => rows.OrderBy(epSort => epSort.Add(c => c.AirDate).Descending()).Enabled(true))
2011-05-03 06:03:49 +00:00
.Filterable(filtering => filtering
.Filters(filters => filters
.Add(o => o.SeasonNumber).IsGreaterThan(0)))
2011-05-01 08:05:28 +00:00
.Pageable(
c =>
c.PageSize(20).Position(GridPagerPosition.Bottom).Style(GridPagerStyles.NextPrevious))
.Render();}