mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-18 21:35:27 -04:00
cef7b6a8dc
Force Download added.
23 lines
813 B
Plaintext
23 lines
813 B
Plaintext
@using DataTables.Mvc.Core
|
|
@model IEnumerable<NzbDrone.Web.Models.SearchResultsModel>
|
|
|
|
@{
|
|
ViewBag.Title = "Search Results";
|
|
}
|
|
|
|
@Html.GridHtml("searchResultsGrid", "dataTablesGrid no-details")
|
|
|
|
@section Scripts
|
|
{
|
|
@(
|
|
Html.GridScriptForModel("#searchResultsGrid")
|
|
.PageLength(20)
|
|
.ChangePageLength(false)
|
|
.AddColumn(new Column().DataProperty("DisplayName").Link("SearchResult/Details?searchId={Id}", "{DisplayName}", null).Title("Name"))
|
|
.AddColumn(new Column().DataProperty("SearchTime").Title("Time").Width("170px"))
|
|
.AddColumn(new Column().DataProperty("ReportCount").Title("Reports Found").Width("140px"))
|
|
.AddColumn(new Column().DataProperty("Successful").Title("Successful").Width("110px"))
|
|
.AddSorting(1)
|
|
)
|
|
}
|