2011-12-10 05:05:17 +00:00
|
|
|
@model List<HistoryModel>
|
2011-04-21 04:20:39 +00:00
|
|
|
@using NzbDrone.Web.Models
|
2011-12-09 04:57:23 +00:00
|
|
|
@using NzbDrone.Web.Helpers
|
2011-12-10 05:05:17 +00:00
|
|
|
@{ViewBag.Title = "History";}
|
2011-04-21 04:20:39 +00:00
|
|
|
@section ActionMenu{
|
2011-08-22 02:56:04 +00:00
|
|
|
<ul class="sub-menu">
|
2011-12-01 05:25:01 +00:00
|
|
|
<li>@Ajax.ActionLink("Trim History", "Trim", "History", new AjaxOptions { OnSuccess = "reloadHistoryGrid" })</li>
|
|
|
|
<li>@Ajax.ActionLink("Purge History", "Purge", "History", new AjaxOptions { OnSuccess = "reloadHistoryGrid" })</li>
|
2011-08-06 02:04:35 +00:00
|
|
|
</ul>
|
2011-04-21 04:20:39 +00:00
|
|
|
}
|
2011-12-09 04:57:23 +00:00
|
|
|
@section HeaderContent
|
|
|
|
{
|
|
|
|
@Html.IncludeCss("Grid.css")
|
|
|
|
}
|
2011-12-01 05:25:01 +00:00
|
|
|
<div class="grid-container">
|
|
|
|
@{Html.Telerik().Grid<HistoryModel>().Name("history")
|
|
|
|
.TableHtmlAttributes(new { @class = "Grid" })
|
|
|
|
.Columns(columns =>
|
|
|
|
{
|
|
|
|
columns.Bound(c => c.Indexer)
|
|
|
|
.ClientTemplate("<center><img alt='<#= Indexer #>' src='" + Url.Content("~/Content/Images/Indexers/") + "<#= Indexer #>.png' /></center>")
|
|
|
|
.Title("")
|
|
|
|
.Width(20);
|
|
|
|
columns.Bound(c => c.SeriesTitle)
|
|
|
|
.ClientTemplate("<a href=" +
|
|
|
|
Url.Action("Details", "Series", new { seriesId = "<#= SeriesId #>" }) +
|
|
|
|
"><#= SeriesTitle #></a>")
|
|
|
|
.Title("Series Title");
|
2011-12-08 06:28:52 +00:00
|
|
|
columns.Bound(c => c.SeasonNumber).Title("Season #").Width(50);
|
|
|
|
columns.Bound(c => c.EpisodeNumber).Title("Episode #").Width(50);
|
2011-12-01 05:25:01 +00:00
|
|
|
columns.Bound(c => c.EpisodeTitle).Title("Episode Title");
|
|
|
|
columns.Bound(c => c.Quality).Title("Quality").Width(50);
|
|
|
|
columns.Bound(c => c.Date).Title("Grabbed on");
|
|
|
|
columns.Bound(c => c.HistoryId)
|
|
|
|
.Title("Actions")
|
2011-12-15 08:47:32 +00:00
|
|
|
.ClientTemplate(Ajax.ImageActionLink("../../Content/Images/X.png", new { Alt = "Delete", Title = "Delete from history", @class = "searchImage" }, "Delete", "History", new { HistoryId = "<#= HistoryId #>" }, new AjaxOptions { OnSuccess = "reloadHistoryGrid" }, null).ToString() +
|
|
|
|
Ajax.ImageActionLink("../../Content/Images/Downloading.png", new { Alt = "Redownload", Title = "Redownlod Episode", @class = "searchImage" }, "Redownload", "History", new { HistoryId = "<#= HistoryId #>", EpisodeId = "<#= EpisodeId #>" }, new AjaxOptions { OnSuccess = "reloadHistoryGrid" }, null).ToString())
|
2011-12-01 05:25:01 +00:00
|
|
|
.Width("40");
|
|
|
|
})
|
|
|
|
.DetailView(detailView => detailView.ClientTemplate(
|
|
|
|
"<fieldset>" +
|
|
|
|
"<div><b>Overview: </b><#= EpisodeOverview #></div>" +
|
|
|
|
"<div><b>NZB Title: </b><#= NzbTitle #></div>" +
|
|
|
|
"<div><b>Proper: </b><#= IsProper #></div>" +
|
|
|
|
"</fieldset>"
|
|
|
|
))
|
|
|
|
.DataBinding(data => data.Ajax().Select("_AjaxBinding", "History"))
|
|
|
|
.Sortable(rows => rows.OrderBy(epSort => epSort.Add(c => c.Date).Descending()).Enabled(true))
|
|
|
|
.Pageable(
|
|
|
|
c =>
|
|
|
|
c.PageSize(20).Position(GridPagerPosition.Bottom).Style(GridPagerStyles.NextPrevious))
|
|
|
|
.Render();}
|
|
|
|
</div>
|
2011-08-06 02:04:35 +00:00
|
|
|
<script type="text/javascript">
|
2011-08-27 00:59:51 +00:00
|
|
|
deleteHistoryRowUrl = '../History/Delete';
|
|
|
|
redownloadUrl = '../History/Redownload';
|
2011-08-06 02:04:35 +00:00
|
|
|
|
2011-08-22 01:00:12 +00:00
|
|
|
function reloadHistoryGrid() {
|
2011-08-27 00:59:51 +00:00
|
|
|
var grid = $('#history').data('tGrid');
|
2011-11-10 16:22:52 +00:00
|
|
|
grid.ajaxRequest();
|
2011-08-27 00:59:51 +00:00
|
|
|
}
|
2011-12-01 05:25:01 +00:00
|
|
|
</script>
|