1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2024-12-30 19:56:54 +00:00
Sonarr/NzbDrone.Web/Views/System/Indexers.cshtml

10 lines
249 B
Text
Raw Normal View History

2011-04-22 06:23:29 +00:00
@model IEnumerable<NzbDrone.Core.Repository.IndexerSetting>
@section TitleContent{
2011-04-22 06:23:29 +00:00
Indexers
}
@section MainContent{
@{Html.Telerik().Grid(Model).Name("Grid")
.TableHtmlAttributes(new { @class = "Grid" })
.Render();}
}