1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/NzbDrone.Web/Views/System/Indexers.cshtml

10 lines
252 B
Plaintext
Raw Normal View History

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