diff --git a/NzbDrone.Web/Views/History/Index.cshtml b/NzbDrone.Web/Views/History/Index.cshtml index 0639db171..8d967d1b9 100644 --- a/NzbDrone.Web/Views/History/Index.cshtml +++ b/NzbDrone.Web/Views/History/Index.cshtml @@ -24,8 +24,8 @@ History Url.Action("Details", "Series", new { seriesId = "<#= SeriesId #>" }) + "><#= SeriesTitle #>") .Title("Series Title"); - columns.Bound(c => c.SeasonNumber).Title("Season").Width(1); - columns.Bound(c => c.EpisodeNumber).Title("Episode").Width(1); + columns.Bound(c => c.SeasonNumber).Title("Season #").Width(50); + columns.Bound(c => c.EpisodeNumber).Title("Episode #").Width(50); 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"); diff --git a/NzbDrone.Web/Views/Series/Details.cshtml b/NzbDrone.Web/Views/Series/Details.cshtml index 5f23708b2..32dfc98d5 100644 --- a/NzbDrone.Web/Views/Series/Details.cshtml +++ b/NzbDrone.Web/Views/Series/Details.cshtml @@ -101,7 +101,7 @@ .TableHtmlAttributes(new { @class = "Grid" }) .Columns(columns => { - columns.Bound(c => c.EpisodeNumber).Width(100).Title("Episode").Sortable(true); + columns.Bound(c => c.EpisodeNumber).Width(100).Title("Episode #").Sortable(true); columns.Bound(c => c.Title).Title("Title").Sortable(false); columns.Bound(c => c.AirDate).Width(100).Sortable(false); columns.Bound(c => c.Quality).Width(100);