mirror of
https://github.com/Radarr/Radarr
synced 2025-01-03 22:04:43 +00:00
14 lines
558 B
Text
14 lines
558 B
Text
|
<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<NzbDrone.Core.Repository.Episode>" %>
|
||
|
<%@ Import Namespace="Telerik.Web.Mvc.UI" %>
|
||
|
<%: Model.Overview %>
|
||
|
<%:
|
||
|
Html.Telerik().Grid(Model.Files)
|
||
|
.Name("files_" + Model.EpisodeId)
|
||
|
.Columns(columns =>
|
||
|
{
|
||
|
columns.Bound(c => c.Path);
|
||
|
columns.Bound(c => c.Quality);
|
||
|
columns.Bound(c => c.DateAdded);
|
||
|
})
|
||
|
.Footer(false)
|
||
|
%>
|