diff --git a/gui/slick/interfaces/default/home.tmpl b/gui/slick/interfaces/default/home.tmpl index f193ce7e..d20feb16 100644 --- a/gui/slick/interfaces/default/home.tmpl +++ b/gui/slick/interfaces/default/home.tmpl @@ -280,6 +280,11 @@ $myShowList.sort(lambda x, y: cmp(x.name, y.name)) #set $cur_downloaded = 0 #set $cur_total = 0 #set $download_stat_tip = '' + #if re.search(r'(?i)(?:new|returning)\s*series', $curShow.status): + #set $display_status = 'Continuing' + #else: + #set $display_status = $curShow.status + #end if #if $curShow.indexerid in $show_stat: #set $cur_airs_next = $show_stat[$curShow.indexerid]['ep_airs_next'] @@ -322,7 +327,18 @@ $myShowList.sort(lambda x, y: cmp(x.name, y.name)) #set $progressbar_percent = $nom * 100 / $den -
@@ -581,7 +599,11 @@ $myShowList.sort(lambda x, y: cmp(x.name, y.name)) | +#if re.search(r'(?i)(?:new|returning)\s*series', $curShow.status): + Continuing +#else: $curShow.status +#end if |