1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2025-01-01 04:25:55 +00:00
Lidarr/NzbDrone.Web/Views/System/Jobs.cshtml

10 lines
241 B
Text
Raw Normal View History

@model IEnumerable<NzbDrone.Core.Repository.JobSetting>
@section TitleContent{
Jobs
}
@section MainContent{
@{Html.Telerik().Grid(Model).Name("Grid")
.TableHtmlAttributes(new { @class = "Grid" })
.Render();}
}