mirror of
https://github.com/moparisthebest/SickRage
synced 2024-11-05 17:05:03 -05:00
8066983384
KAT Provider now uses feedcache to get its results via rss feeds. Fixed issues with Trakt.TV notifications and adding of trending shows Improved Trakt trending shows page, now shows progress animation well it waits to load shows list.
45 lines
1.6 KiB
Cheetah
45 lines
1.6 KiB
Cheetah
#import sickbeard
|
|
#import datetime
|
|
#import re
|
|
#from sickbeard.common import *
|
|
#from sickbeard import sbdatetime
|
|
#from sickbeard.helpers import anon_url
|
|
|
|
#set global $title='Trending Shows'
|
|
#set global $header='Trending Shows'
|
|
|
|
#set global $sbPath='..'
|
|
|
|
#set global $topmenu='comingEpisodes'
|
|
#import os.path
|
|
|
|
#if not $trending_shows
|
|
<div class="trakt_show" style="width:100%; margin-top:20px">
|
|
<p class="red-text">Trakt API did not return any results, please check your config.
|
|
</div>
|
|
#else
|
|
#for $cur_show in $trending_shows:
|
|
#set $image = re.sub(r'(?im)(.*)(\..*?)$', r'\1-300\2', $cur_show['images']['poster'], 0)
|
|
|
|
<div class="trakt_show" data-name="$cur_show['title']" data-rating="$cur_show['ratings']['percentage']" data-votes="$cur_show['ratings']['votes']">
|
|
<div class="traktContainer">
|
|
<div class="trakt-image">
|
|
<a class="trakt-image" href="<%= anon_url(cur_show['url']) %>" target="_blank"><img alt="" class="trakt-image" src="${image}" /></a>
|
|
</div>
|
|
|
|
<div class="show-title">
|
|
<%= (cur_show['title'], '<span> </span>')[ '' == cur_show['title']] %>
|
|
</div>
|
|
|
|
<div class="clearfix">
|
|
<p>$cur_show['ratings']['percentage']% <img src="$sbRoot/images/heart.png"></p>
|
|
<i>$cur_show['ratings']['votes'] votes</i>
|
|
|
|
<div class="traktShowTitleIcons">
|
|
<a href="$sbRoot/home/addShows/addTraktShow?indexer_id=${cur_show['tvdb_id'] or cur_show['tvrage_id']}&showName=${cur_show['title']}" class="btn btn-xs">Add Show</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
#end for
|
|
#end if |