diff --git a/CHANGES.md b/CHANGES.md index ef4427cf..08ec3fb1 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -67,6 +67,7 @@ * Change improve existing show page and the handling when an attempt to add a show to an existing location * Change consolidate Trakt Trending and Recommended views into an "Add From Trakt" view which defaults to trending * Change Trakt view drop down "Show" to reveal Brand-new Shows, Season Premieres, Recommendations and Trending views +* Change add season info to "Show: Trakt New Seasons" view on the Add from Trakt page * Change increase number of displayed Trakt shows to 100 * Add genres and rating to all Trakt shows * Add AniDb Random and Hot to Add Show page diff --git a/gui/slick/interfaces/default/home_browseShows.tmpl b/gui/slick/interfaces/default/home_browseShows.tmpl index 6a6d819c..1a6c7cb3 100644 --- a/gui/slick/interfaces/default/home_browseShows.tmpl +++ b/gui/slick/interfaces/default/home_browseShows.tmpl @@ -163,12 +163,22 @@ #if $all_shows #for $this_show in $all_shows: #set $title_html = $this_show['title'].replace('"', '"').replace("'", ''') + #if 'newseasons' == $kwargs.get('mode', '') + #set $overview = '%s: %s' % ( + ('Season %s' % $this_show['episode_season'], 'Brand-new')[1 == $this_show['episode_season']], + ($this_show['overview'], $this_show['episode_overview'])[any($this_show['episode_overview']) and 1 != $this_show['episode_season']]) + #else + #set $overview = $this_show['overview'] + #end if