You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
558 B
14 lines
558 B
14 years ago
|
<%@ 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)
|
||
|
%>
|