mirror of https://github.com/Radarr/Radarr
51 lines
2.7 KiB
Plaintext
51 lines
2.7 KiB
Plaintext
@model List<MissingEpisodeModel>
|
|
@using NzbDrone.Web.Helpers
|
|
@using NzbDrone.Web.Models;
|
|
@{ViewBag.Title="Missing";}
|
|
@section HeaderContent
|
|
{
|
|
@Html.IncludeCss("Grid.css")
|
|
}
|
|
@section ActionMenu{
|
|
<ul class="sub-menu">
|
|
<li>@Ajax.ActionLink("Start RSS Sync", "RssSync", "Command", null, null)</li>
|
|
<li>@Ajax.ActionLink("Start Backlog Search", "BacklogSearch", "Command", null, null)</li>
|
|
</ul>
|
|
}
|
|
@{Html.Telerik().Grid<MissingEpisodeModel>().Name("missing")
|
|
.TableHtmlAttributes(new { @class = "Grid" })
|
|
.Columns(columns =>
|
|
{
|
|
columns.Bound(c => c.SeriesTitle)
|
|
.ClientTemplate("<a href=" +
|
|
Url.Action("Details", "Series", new { seriesId = "<#= SeriesId #>" }) +
|
|
"><#= SeriesTitle #></a>")
|
|
.Title("Series Title");
|
|
columns.Bound(c => c.SeasonNumber).Title("Season #").Width(85);
|
|
columns.Bound(c => c.EpisodeNumber).Title("Episode #").Width(85);
|
|
columns.Bound(c => c.EpisodeTitle).Title("Episode Title");
|
|
columns.Bound(c => c.AirDate)
|
|
.ClientTemplate("<#= AirDateString #>")
|
|
.Title("Air Date")
|
|
.Width(90);
|
|
columns.Bound(c => c.EpisodeId)
|
|
.Title("Actions")
|
|
.ClientTemplate(Ajax.ImageActionLink("../../Content/Images/Search.png", new { Alt = "Search", Title = "Search for episode", @class = "searchImage" }, "Search", "Episode", new { EpisodeId = "<#= EpisodeId #>" }, null, null).ToString())
|
|
.Width("40");
|
|
})
|
|
.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))
|
|
.Filterable(filtering => filtering
|
|
.Filters(filters => filters
|
|
.Add(o => o.SeasonNumber).IsGreaterThan(0)))
|
|
|
|
.Pageable(
|
|
c =>
|
|
c.PageSize(20).Position(GridPagerPosition.Bottom).Style(GridPagerStyles.NextPrevious))
|
|
.Render();}
|