mirror of https://github.com/lidarr/Lidarr
23 lines
796 B
Plaintext
23 lines
796 B
Plaintext
|
@using DataTables.Mvc.Core
|
||
|
@model IEnumerable<NzbDrone.Web.Models.SearchResultsModel>
|
||
|
|
||
|
@{
|
||
|
ViewBag.Title = "Search Results";
|
||
|
}
|
||
|
|
||
|
@Html.GridHtml("searchResultsGrid", "dataTablesGrid")
|
||
|
|
||
|
@section Scripts
|
||
|
{
|
||
|
@(
|
||
|
Html.GridScriptForModel("#searchResultsGrid")
|
||
|
.PageLength(20)
|
||
|
.ChangePageLength(false)
|
||
|
.AddColumn(new Column().DataProperty("DisplayName").Link("SearchDetails?searchId={Id}", "{DisplayName}").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)
|
||
|
)
|
||
|
}
|