mirror of
https://github.com/moparisthebest/SickRage
synced 2024-11-16 06:15:09 -05:00
Resolves problem for display country icons if show has more then one country listed for it.
This commit is contained in:
parent
0cc5ba4eb7
commit
0766dfe310
@ -53,7 +53,10 @@
|
|||||||
<a href="$sickbeard.indexerApi($show.indexer).config["show_url"]$show.indexerid" onclick="window.open(this.href, '_blank'); return false;" title="$sickbeard.indexerApi($show.indexer).config["show_url"]$show.indexerid"><img alt="$sickbeard.indexerApi($show.indexer).name" height="16" width="16" src="$sbRoot/images/$sickbeard.indexerApi($show.indexer).config["icon"] "style="margin-top: -1px;"/></a>
|
<a href="$sickbeard.indexerApi($show.indexer).config["show_url"]$show.indexerid" onclick="window.open(this.href, '_blank'); return false;" title="$sickbeard.indexerApi($show.indexer).config["show_url"]$show.indexerid"><img alt="$sickbeard.indexerApi($show.indexer).name" height="16" width="16" src="$sbRoot/images/$sickbeard.indexerApi($show.indexer).config["icon"] "style="margin-top: -1px;"/></a>
|
||||||
</span>
|
</span>
|
||||||
#else
|
#else
|
||||||
<img src="$sbRoot/images/flags/${$show.imdb_info['country_codes']}.png" width="16" height="11" style="margin-top: 3px; margin-left: 3px" /> ($show.imdb_info['year']) - $show.imdb_info['runtimes'] min - $show.imdb_info['genres'].replace('|',' | ')
|
#for $country in $show.imdb_info['country_codes'].split('|')
|
||||||
|
<img src="$sbRoot/images/flags/${$country}.png" width="16" height="11" style="margin-top: 3px; margin-left: 3px" />
|
||||||
|
#end for
|
||||||
|
($show.imdb_info['year']) - $show.imdb_info['runtimes'] min - $show.imdb_info['genres'].replace('|',' | ')
|
||||||
<span class="tvshowLink" style="vertical-align: text-top">
|
<span class="tvshowLink" style="vertical-align: text-top">
|
||||||
<a href="http://www.imdb.com/title/$show.imdbid" rel="noreferrer" onclick="window.open('${sickbeard.ANON_REDIRECT}' + this.href, '_blank'); return false;" title="http://www.imdb.com/title/$show.imdbid"><img alt="[imdb]" height="16" width="16" src="$sbRoot/images/imdb.png" style="margin-top: -1px;"/>
|
<a href="http://www.imdb.com/title/$show.imdbid" rel="noreferrer" onclick="window.open('${sickbeard.ANON_REDIRECT}' + this.href, '_blank'); return false;" title="http://www.imdb.com/title/$show.imdbid"><img alt="[imdb]" height="16" width="16" src="$sbRoot/images/imdb.png" style="margin-top: -1px;"/>
|
||||||
<a href="$sickbeard.indexerApi($show.indexer).config["show_url"]$show.indexerid" rel="noreferrer" onclick="window.open('${sickbeard.ANON_REDIRECT}' + this.href, '_blank'); return false;" title="$sickbeard.indexerApi($show.indexer).config["show_url"]$show.indexerid"><img alt="$sickbeard.indexerApi($show.indexer).name" height="16" width="16" src="$sbRoot/images/$sickbeard.indexerApi($show.indexer).config["icon"] "style="margin-top: -1px;"/></a>
|
<a href="$sickbeard.indexerApi($show.indexer).config["show_url"]$show.indexerid" rel="noreferrer" onclick="window.open('${sickbeard.ANON_REDIRECT}' + this.href, '_blank'); return false;" title="$sickbeard.indexerApi($show.indexer).config["show_url"]$show.indexerid"><img alt="$sickbeard.indexerApi($show.indexer).name" height="16" width="16" src="$sbRoot/images/$sickbeard.indexerApi($show.indexer).config["icon"] "style="margin-top: -1px;"/></a>
|
||||||
|
@ -822,11 +822,6 @@ class TVShow(object):
|
|||||||
else:
|
else:
|
||||||
imdb_info['genres'] = ''
|
imdb_info['genres'] = ''
|
||||||
|
|
||||||
if imdb_info['country_codes']:
|
|
||||||
imdb_info['country_codes'] = '|'.join(imdb_info['country_codes'])
|
|
||||||
else:
|
|
||||||
imdb_info['country_codes'] = ''
|
|
||||||
|
|
||||||
#Get only the production country certificate if any
|
#Get only the production country certificate if any
|
||||||
if imdb_info['certificates'] and imdb_info['countries']:
|
if imdb_info['certificates'] and imdb_info['countries']:
|
||||||
dct = {}
|
dct = {}
|
||||||
@ -841,6 +836,11 @@ class TVShow(object):
|
|||||||
else:
|
else:
|
||||||
imdb_info['certificates'] = ''
|
imdb_info['certificates'] = ''
|
||||||
|
|
||||||
|
if imdb_info['country_codes']:
|
||||||
|
imdb_info['country_codes'] = '|'.join(imdb_info['country_codes'])
|
||||||
|
else:
|
||||||
|
imdb_info['country_codes'] = ''
|
||||||
|
|
||||||
imdb_info['last_update'] = datetime.date.today().toordinal()
|
imdb_info['last_update'] = datetime.date.today().toordinal()
|
||||||
|
|
||||||
#Rename dict keys without spaces for DB upsert
|
#Rename dict keys without spaces for DB upsert
|
||||||
|
Loading…
Reference in New Issue
Block a user