#if $seasonResults:
##There is a special/season_0?##
#set $season_special = (0, 1)[0 == int($seasonResults[-1]['season'])]
@@ -93,191 +133,196 @@
#if not $sickbeard.DISPLAY_SHOW_SPECIALS and $season_special:
$seasonResults.pop(-1)
#end if
-
-
+
#if $season_special:
- Display Specials:
+ Display Specials:
#if sickbeard.DISPLAY_SHOW_SPECIALS:
- Hide
+ Hide
#else:
- Show
+ Show
#end if
#end if
-
-
-
+
+ Season:
+ #if (len($seasonResults) > 11):
+
+
#else:
- Season:
#for $seasonNum in $seasonResults:
#if 0 == int($seasonNum['season']):
- Specials
+ Specials
#else:
- ${str($seasonNum['season'])}
- #end if
- #if $seasonNum != $seasonResults[-1]:
- |
+ ${str($seasonNum['season'])}
#end if
#end for
#end if
-
-
+
+#end if
+
+
+
+
+
$show.name
+#if not $show.imdbid
+ #if $show.genre:
+ #for $genre in $show.genre[1:-1].replace('Science-Fiction','Sci-Fi').split('|')
+ $genre
+ #end for
+ #end if
#end if
-
-
-
-
-#if $show_message:
-
- $show_message
-
+#if $sickbeard.USE_IMDB_INFO and 'genres' in $show.imdb_info and '' != $show.imdb_info['genres']:
+ #for $imdbgenre in $show.imdb_info['genres'].split('|')
+ $imdbgenre
+ #end for
#end if
+
-#if $sickbeard.USE_IMDB_INFO and 'rating' in $show.imdb_info
- #if '' != $show.imdb_info['votes']
- #set $rating_tip = '%s of 10 stars %s votes' % (str($show.imdb_info['rating']), str($show.imdb_info['votes']))
- $show.imdb_info['rating']
- #else
- [ No votes available ]
+
+
+
+#if not $show.imdbid
+ #set $runtime = $show.runtime
+ #set $startyear = $show.startyear
+#else
+ #if $sickbeard.USE_IMDB_INFO and 'countries' in $show.imdb_info:
+ #set $country = $show.imdb_info['countries']
+ #end if
+ #if $sickbeard.USE_IMDB_INFO and 'year' in $show.imdb_info:
+ #set $runtime = $show.imdb_info['runtimes']
+ #set $startyear = $show.imdb_info['year']
#end if
#end if
#set $_show = $show
-#if not $sickbeard.USE_IMDB_INFO or not $show.imdbid
- #echo ('(%s) - ' % $show.startyear, '')['' == $show.startyear]##echo ('%s minutes - ' % $show.runtime, '')['' == $show.runtime]#
-#else
- #if 'country_codes' in $show.imdb_info and '' != $show.imdb_info['country_codes']:
- #for $country in $show.imdb_info['country_codes'].split('|')
-
- #end for
- #end if
- #if 'year' in $show.imdb_info:
- #echo ('(%s) - ' % $show.imdb_info['year'], '')['' == $show.imdb_info['year']]##echo ('%s minutes' % $show.imdb_info['runtimes'], '')['' == $show.imdb_info['runtimes']]#
- #end if
-
+
Indexers:
+#if $sickbeard.USE_IMDB_INFO and $show.imdbid
+
#end if
-
+
#if $xem_numbering or $xem_absolute_numbering:
-
+
#end if
-
-#if not $sickbeard.USE_IMDB_INFO or not $show.imdbid
-## Disabling these trackt tags as they 404 on trakt2.0, remove False to re-enable
- #if False and $show.genre:
-
Premiered: $startyear
+#if $sickbeard.USE_IMDB_INFO and 'country_codes' in $show.imdb_info and '' != $show.imdb_info['country_codes']:
+ #for $country in $show.imdb_info['country_codes'].split('|')
+
#end for
-
-
#end if
-
-
-
+
#if $show.network and $show.airs:
-
Originally airs
$show.airs #if not $network_timezones.test_timeformat($show.airs) then ' (invalid Timeformat) ' else ''# on $show.network
+
Airs: $show.airs.replace('y','y,') #if not $network_timezones.test_timeformat($show.airs) then " (invalid Timeformat) " else ""#
+
Network: $show.network
#else if $show.network:
-
Originally airs
$show.network
+
Network: $show.network
#else if $show.airs:
-
Originally airs
$show.airs #if not $network_timezones.test_timeformat($show.airs) then ' (invalid Timeformat) ' else ''#
+
Airs: $show.airs.replace('y','y,') #if not $network_timezones.test_timeformat($show.airs) then " (invalid Timeformat) " else ""#
#end if
+
Runtime: $runtime minutes
#if '' != $show.status:
-
Status
$show.status
+
Status: $show.status
#end if
-#if $showLoc[1]:
-
Location
$showLoc[0]
-#else:
-
Location
$showLoc[0] (dir is missing)
+#if $sickbeard.USE_IMDB_INFO and 'rating' in $show.imdb_info
+ #if '' != $show.imdb_info['votes']
+ #set $rating_tip = '%s of 10 stars %s votes' % (str($show.imdb_info['rating']), str($show.imdb_info['votes']))
+
IMDB Rating: $show.imdb_info['rating']
+ #else
+
IMDB Rating: No votes available
+ #end if
#end if
#set $anyQualities, $bestQualities = $Quality.splitQuality(int($show.quality))
-
Quality
#if $show.quality in $qualityPresets:
- $qualityPresetStrings[$show.quality]
+
Quality: $qualityPresetStrings[$show.quality]
#else:
- #if $anyQualities:
- Initial ... <%= ', '.join([Quality.qualityStrings[x] for x in sorted(anyQualities)])%> #if $bestQualities then ' ' else ''#
- #end if
+ #if $anyQualities:
+
Initial: <%=", ".join([Quality.qualityStrings[x] for x in sorted(anyQualities)])%>
+ #end if
#if $bestQualities:
- Replace with ... <%= ', '.join([Quality.qualityStrings[x] for x in sorted(bestQualities)])%>
+
Replace with: <%=", ".join([Quality.qualityStrings[x] for x in sorted(bestQualities)])%>
#end if
-#end if
-
Scene name
#if $show.exceptions then $exceptions_string else $show.name#
-
-#if $show.rls_ignore_words:
-
Ignore with any of
#echo $show.rls_ignore_words#
#end if
-#if $show.rls_require_words:
-
Require one of
#echo $show.rls_require_words#
+
+
+
+
+
+#if $show.overview != '':
+ $show.overview
+#else
+ No plot overview available.
#end if
+
-#if $bwl and $bwl.whitelist:
-
Whitelist group#if len($bwl.whitelist)>1 then 's' else ''#
-
#echo ', '.join($bwl.whitelist)#
-
+
+
+#if $showLoc[1]:
+ $showLoc[0]
+#else:
+ $showLoc[0]
#end if
-#if $bwl and $bwl.blacklist:
-
Blacklist group#if len($bwl.blacklist)>1 then 's' else ''#
-
#echo ', '.join($bwl.blacklist)#
-
+ $sickbeard.helpers.human(sickbeard.helpers.get_size($showLoc[0]))
+#set $filecount = $epCounts[$Overview.QUAL] + $epCounts[$Overview.GOOD]
+ $filecount Files
+#if $show.exceptions:
+ Scene Names
+#end if
+#if $sickbeard.USE_SUBTITLES
+ #if int($show.subtitles) == 1:
+ Subtitles
+ #end if
+#end if
+#if $show.flatten_folders == 1 or $sickbeard.NAMING_FORCE_FOLDERS:
+ Flat Folders
+#end if
+#if int($show.air_by_date) == 1:
+ Air-by-Date
+#end if
+#if int($show.is_sports) == 1:
+ Sports
+#end if
+#if int($show.is_anime) == 1:
+ Anime
+#end if
+#if int($show.dvdorder) == 1:
+ DVD Order
+#end if
+#if int($show.scene) == 1:
+ Scene Numbering
#end if
-
-
+ #if int($show.archive_firstmatch) == 1
+ Archive First Match
+ #end if
#end if
-
Flat folder structure
-
Air by date naming
-
Use DVD order
-
Scene numbering
-#if $sickbeard.USE_SUBTITLES
-
Subtitles
+#if $show.rls_require_words:
+ Required Words
+#end if
+#if $show.rls_ignore_words:
+ Ignored Words
+#end if
+#if $bwl and $bwl.whitelist:
+ Wanted Group#if len($bwl.whitelist)>1 then "s" else ""#
+#end if
+#if $bwl and $bwl.blacklist:
+ Unwanted Group#if len($bwl.blacklist)>1 then "s" else ""#
#end if
-
-
+
#if $sickbeard.USE_SUBTITLES and $show.subtitles:
- #if $epResult['subtitles']:
- #for $sub_lang in subliminal.language.language_list($epResult['subtitles'].split(',')):
+ #if $epResult['subtitles']:
+ #for $sub_lang in subliminal.language.language_list($epResult['subtitles'].split(',')):
#if '' != sub_lang.alpha2
- #end if
- #end for
- #end if
+ #end if
+ #end for
+ #end if
#end if
@@ -488,13 +557,28 @@
#end if
#end if
-
+
#if $sickbeard.USE_SUBTITLES and $show.subtitles and len(set(str($epResult['subtitles']).split(',')).intersection(set($subtitles.wantedLanguages()))) < len($subtitles.wantedLanguages()) and $epResult['location']
#end if
#end for
+#if $sickbeard.DISPLAY_ALL_SEASONS == False and $seasonCount > 1:
+
+#end if