mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 10:47:08 -07:00
More work on indexers/jobs
This commit is contained in:
parent
7e66871cb7
commit
8c7c2ac296
10 changed files with 99 additions and 70 deletions
9
NzbDrone.Web/Views/System/Indexers.cshtml
Normal file
9
NzbDrone.Web/Views/System/Indexers.cshtml
Normal file
|
@ -0,0 +1,9 @@
|
|||
@model IEnumerable<NzbDrone.Core.Repository.IndexerSetting>
|
||||
@section TitleContent{
|
||||
Indexers
|
||||
}
|
||||
@section MainContent{
|
||||
@{Html.Telerik().Grid(Model).Name("Grid")
|
||||
.TableHtmlAttributes(new { @class = "Grid" })
|
||||
.Render();}
|
||||
}
|
9
NzbDrone.Web/Views/System/Jobs.cshtml
Normal file
9
NzbDrone.Web/Views/System/Jobs.cshtml
Normal file
|
@ -0,0 +1,9 @@
|
|||
@model IEnumerable<NzbDrone.Core.Repository.JobSetting>
|
||||
@section TitleContent{
|
||||
Jobs
|
||||
}
|
||||
@section MainContent{
|
||||
@{Html.Telerik().Grid(Model).Name("Grid")
|
||||
.TableHtmlAttributes(new { @class = "Grid" })
|
||||
.Render();}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue