2014-03-10 05:18:05 +00:00
#import sickbeard
#from sickbeard import subtitles , sbdatetime , network_timezones
#import sickbeard . helpers
#from sickbeard . common import *
2014-11-09 02:49:38 +00:00
#from sickbeard . helpers import anon_url
2014-03-10 05:18:05 +00:00
#from lib import subliminal
#import os . path , os
#import datetime
2014-11-09 02:49:38 +00:00
2015-01-24 23:46:13 +00:00
#set global $ title = $ show . name
#set global $ topmenu = ' home '
#set $ exceptions_string = ' , ' . join ( $ show . exceptions )
#include $ os . path . join ( $ sickbeard . PROG_DIR , ' gui/slick/interfaces/default/inc_top.tmpl ' )
2014-03-10 05:18:05 +00:00
2014-07-03 23:51:39 +00:00
<script type="text/javascript" src=" $ sbRoot /js/lib/jquery.bookmarkscroll.js? $ sbPID "></script>
2014-03-10 05:18:05 +00:00
<input type="hidden" id="sbRoot" value=" $ sbRoot " />
<script type="text/javascript" src=" $ sbRoot /js/displayShow.js? $ sbPID "></script>
<script type="text/javascript" src=" $ sbRoot /js/plotTooltip.js? $ sbPID "></script>
2014-05-26 18:07:10 +00:00
<script type="text/javascript" src=" $ sbRoot /js/sceneExceptionsTooltip.js? $ sbPID "></script>
2015-03-14 02:48:38 +00:00
#if $ sickbeard . USE_IMDB_INFO :
2014-09-30 22:20:37 +00:00
<script type="text/javascript" src=" $ sbRoot /js/ratingTooltip.js? $ sbPID "></script>
2015-03-14 02:48:38 +00:00
#end if
2014-03-10 05:18:05 +00:00
<script type="text/javascript" src=" $ sbRoot /js/ajaxEpSearch.js? $ sbPID "></script>
<script type="text/javascript" src=" $ sbRoot /js/ajaxEpSubtitles.js? $ sbPID "></script>
2014-05-23 15:20:44 +00:00
<script type="text/javascript" charset="utf-8">
<!--
\$(document).ready(function(){
2015-03-14 02:48:38 +00:00
#set $ fuzzydate = ' airdate '
#if $ sickbeard . FUZZY_DATING :
2014-05-23 15:20:44 +00:00
fuzzyMoment({
containerClass : '. ${ fuzzydate } ',
dateHasTime : false,
dateFormat : ' ${ sickbeard . DATE_PRESET } ',
timeFormat : ' ${ sickbeard . TIME_PRESET } ',
2015-03-14 02:48:38 +00:00
trimZero : #if $ sickbeard . TRIM_ZERO then ' true ' else ' false ' #
2014-05-23 15:20:44 +00:00
});
2015-03-14 02:48:38 +00:00
#end if
#raw
2014-06-03 23:40:05 +00:00
$('.addQTip').each(function () {
2014-09-30 22:20:37 +00:00
$(this).css({'cursor':'help', 'text-shadow':'0px 0px 0.5px #666'});
2014-06-03 23:40:05 +00:00
$(this).qtip({
show: {solo:true},
position: {viewport:$(window), my:'left center', adjust:{ y: -10, x: 2 }},
2014-12-11 12:55:42 +00:00
style: {classes:'qtip-rounded qtip-shadow'}
2014-06-03 23:40:05 +00:00
});
});
2015-03-14 02:48:38 +00:00
#end raw
#if $ sickbeard . USE_IMDB_INFO :
2014-09-30 22:20:37 +00:00
\$.fn.generateStars = function() {
return this.each(function(i,e){\$(e).html(\$('<span/>').width(\$(e).text()*12));});
};
\$('.imdbstars').generateStars();
2015-03-14 02:48:38 +00:00
#end if
2014-12-12 02:36:23 +00:00
TVShowList = [ ${ tvshow_id_csv } ]
2014-05-23 15:20:44 +00:00
});
//-->
</script>
2014-03-10 05:18:05 +00:00
2014-10-21 19:09:01 +00:00
<div class="pull-left form-inline">
Change Show:
<div class="navShow"><img id="prevShow" src=" $ sbRoot /images/prev.png" alt="<<" title="Prev Show" /></div>
2015-03-14 02:48:38 +00:00
<select id="pickShow" class="form-control form-control-inline input-sm">
#for $ curShowList in $ sortedShowLists :
#set $ curShowType = $ curShowList [ 0 ]
#set $ curShowList = $ curShowList [ 1 ]
#if 1 < len ( $ sortedShowLists ) :
<optgroup label=" $ curShowType ">
#end if
#for $ curShow in $ curShowList :
<option value=" $ curShow . indexerid " #if $ curShow == $ show then ' selected= " selected " ' else ' ' # > $ curShow . name </option>
#end for
#if 1 < len ( $ sortedShowLists ) :
</optgroup>
#end if
#end for
</select>
2014-10-21 19:09:01 +00:00
<div class="navShow"><img id="nextShow" src=" $ sbRoot /images/next.png" alt=">>" title="Next Show" /></div>
</div>
2014-03-10 05:18:05 +00:00
2014-10-21 19:09:01 +00:00
<div class="clearfix"></div>
2014-09-30 22:20:37 +00:00
<div id="showtitle" data-showname=" $ show . name ">
2014-11-21 04:41:42 +00:00
<h1 class="title" id="scene_exception_ $ show . indexerid "><span> $ show . name </span></h1>
2014-09-30 22:20:37 +00:00
</div>
2015-03-14 02:48:38 +00:00
#if $ seasonResults :
##There is a special/season_0?##
#set $ season_special = ( 0 , 1 ) [ 0 == int ( $ seasonResults [ - 1 ] [ ' season ' ] ) ]
2014-10-21 19:09:01 +00:00
2015-03-14 02:48:38 +00:00
#if not $ sickbeard . DISPLAY_SHOW_SPECIALS and $ season_special :
$ seasonResults . pop (-1)
#end if
2014-10-21 19:09:01 +00:00
2015-03-14 02:48:38 +00:00
<span class="h2footer displayspecials pull-right">
#if $ season_special :
Display Specials:
#if sickbeard . DISPLAY_SHOW_SPECIALS :
<a class="inner" href=" $ sbRoot /toggleDisplayShowSpecials/?show= $ show . indexerid ">Hide</a>
#else :
<a class="inner" href=" $ sbRoot /toggleDisplayShowSpecials/?show= $ show . indexerid ">Show</a>
#end if
#end if
</span>
2014-10-21 19:09:01 +00:00
2015-03-14 02:48:38 +00:00
<div class="h2footer pull-right">
<span>
#if ( len ( $ seasonResults ) > 14 ) :
<select id="seasonJump" class="form-control input-sm" style="position: relative; top: -4px;">
<option value="jump">Jump to Season</option>
#for $ seasonNum in $ seasonResults :
<option value=" #season - $ seasonNum [ ' season ' ] " > # if 0 == int( $ seasonNum ['season']) then 'Specials' else 'Season ' + str( $ seasonNum ['season']) #</option>
#end for
</select>
#else :
Season:
#for $ seasonNum in $ seasonResults :
#if 0 == int ( $ seasonNum [ ' season ' ] ) :
<a href=" #season - $ seasonNum [ ' season ' ] " >Specials</a>
#else :
<a href=" #season - $ seasonNum [ ' season ' ] " >$ { str($seasonNum[ ' season ' ])}</a>
#end if
#if $ seasonNum != $ seasonResults [ - 1 ] :
<span class="separator">|</span>
#end if
#end for
#end if
</span>
2014-10-21 19:09:01 +00:00
2015-03-14 02:48:38 +00:00
#end if
</div>
2014-09-30 22:20:37 +00:00
2014-10-21 19:09:01 +00:00
<div class="clearfix"></div>
2014-11-02 11:18:59 +00:00
#if $ show_message :
<div class="alert alert-info">
$ show_message
</div>
#end if
2015-03-14 02:48:38 +00:00
2014-10-21 19:09:01 +00:00
<div id="container">
<div id="posterCol">
2015-03-14 02:48:38 +00:00
<a href=" $ sbRoot /showPoster/?show= $ show . indexerid &which=poster" rel="dialog" title="View Poster for $ show . name ">
2015-03-16 15:38:38 +00:00
<img #echo ( ' ' , ' style= " height:270px " ' ) [ ( not $ sickbeard . USE_IMDB_INFO or not $ show . imdbid or ' year ' not in $ show . imdb_info )
or ( $ sickbeard . USE_IMDB_INFO and 'genres' in $ show . imdb_info and '' == $ show . imdb_info ['genres'])] #src = " $sbRoot/showPoster/?show=$show.indexerid&which=poster_thumb " class = " tvshowImg " alt = " " / > < / a >
2014-09-30 22:20:37 +00:00
</div>
2014-10-02 08:37:08 +00:00
2014-10-21 19:09:01 +00:00
<div id="showCol">
2015-03-14 02:48:38 +00:00
2014-10-21 19:09:01 +00:00
<div id="showinfo">
2015-03-14 02:48:38 +00:00
#if $ sickbeard . USE_IMDB_INFO and ' rating ' in $ show . imdb_info
#if ' ' != $ show . imdb_info [ ' votes ' ]
#set $ rating_tip = ' %s of 10 stars<br /> %s votes ' % ( str ( $ show . imdb_info [ ' rating ' ] ) , str ( $ show . imdb_info [ ' votes ' ] ) )
2014-11-09 02:49:38 +00:00
<span class="imdbstars" qtip-content=" $ rating_tip "> $ show . imdb_info ['rating']</span>
2015-03-14 02:48:38 +00:00
#else
<span class="imdb-info">[ No votes available ]</span>
#end if
2014-11-09 02:49:38 +00:00
#end if
2015-03-14 02:48:38 +00:00
2014-11-09 02:49:38 +00:00
#set $ _show = $ show
2015-03-14 02:48:38 +00:00
#if not $ sickbeard . USE_IMDB_INFO or not $ show . imdbid
2015-03-16 15:38:38 +00:00
<span> #echo ( ' ( %s ) - ' % $ show . startyear , ' ' ) [ ' ' == $ show . startyear ] # #echo ( ' %s minutes - ' % $ show . runtime , ' ' ) [ ' ' == $ show . runtime ] # </span>
2014-11-09 02:49:38 +00:00
#else
2015-03-16 15:38:38 +00:00
#if ' country_codes ' in $ show . imdb_info and ' ' != $ show . imdb_info [ ' country_codes ' ] :
2014-11-09 02:49:38 +00:00
#for $ country in $ show . imdb_info [ ' country_codes ' ] . split ( ' | ' )
2014-11-21 09:50:12 +00:00
<img class="flag" src=" $ sbRoot /images/flags/ ${ $ country } .png" width="16" height="11" />
2014-11-09 02:49:38 +00:00
#end for
#end if
#if ' year ' in $ show . imdb_info :
2015-03-16 15:38:38 +00:00
<span class="imdb-info"> #echo ( ' ( %s ) - ' % $ show . imdb_info [ ' year ' ] , ' ' ) [ ' ' == $ show . imdb_info [ ' year ' ] ] # #echo ( ' %s minutes ' % $ show . imdb_info [ ' runtimes ' ] , ' ' ) [ ' ' == $ show . imdb_info [ ' runtimes ' ] ] # </span>
2014-11-09 02:49:38 +00:00
#end if
2014-11-21 09:50:12 +00:00
<a class="service" href="<%= anon_url('http://www.imdb.com/title/', _show.imdbid) %>" rel="noreferrer" onclick="window.open(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" /></a>
2014-11-09 02:49:38 +00:00
#end if
2014-11-21 09:50:12 +00:00
<a class="service" href="<%= anon_url(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']" /></a>
2014-11-09 02:49:38 +00:00
#if $ xem_numbering or $ xem_absolute_numbering :
2014-11-21 09:50:12 +00:00
<a class="service" href="<%= anon_url('http://thexem.de/search?q=', _show.name) %>" rel="noreferrer" onclick="window.open(this.href, '_blank'); return false;" title="http://thexem.de/search?q- $ show . name "><img alt="[xem]" height="16" width="16" src=" $ sbRoot /images/xem.png" /></a>
2014-11-09 02:49:38 +00:00
#end if
2014-10-21 19:09:01 +00:00
</div>
2015-03-14 02:48:38 +00:00
#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 :
2014-10-21 19:09:01 +00:00
<div id="tags">
<ul class="tags">
2015-03-14 02:48:38 +00:00
#for $ genre in $ show . genre [ 1 : - 1 ] . split ( ' | ' )
<li><a href="<%= anon_url('http://trakt.tv/shows/popular/', genre.lower()) %>" target="_blank" title="View other popular $ genre shows on trakt.tv"> $ genre </a></li>
#end for
2014-10-21 19:09:01 +00:00
</ul>
</div>
2015-03-14 02:48:38 +00:00
#end if
#end if
2015-03-16 15:38:38 +00:00
#if $ sickbeard . USE_IMDB_INFO and ' genres ' in $ show . imdb_info and ' ' != $ show . imdb_info [ ' genres ' ] :
2015-03-14 02:48:38 +00:00
<div id="tags">
<ul class="tags">
#for $ imdbgenre in $ show . imdb_info [ ' genres ' ] . split ( ' | ' )
<li><a href="<%= anon_url('http://www.imdb.com/genre/', imdbgenre) %>" target="_blank" title="View other popular $ imdbgenre shows on imdb.com"> $ imdbgenre . replace ('Sci-Fi', 'Science-Fiction')</a></li>
#end for
</ul>
</div>
#end if
2014-10-21 19:09:01 +00:00
<div id="summary">
<table class="summaryTable pull-left">
2015-03-14 02:48:38 +00:00
#if $ show . network and $ show . airs :
2015-02-16 03:17:56 +00:00
<tr><td class="showLegend grey-text">Originally airs</td><td> $ show . airs #if not $ network_timezones . test_timeformat ( $ show . airs ) then ' <font color= " # FF0000"><b>(invalid Timeformat)</b></font> ' else '' # on $ show . network </td></tr>
2015-03-14 02:48:38 +00:00
#else if $ show . network :
2015-02-16 03:17:56 +00:00
<tr><td class="showLegend grey-text">Originally airs</td><td> $ show . network </td></tr>
2015-03-14 02:48:38 +00:00
#else if $ show . airs :
2015-02-16 03:17:56 +00:00
<tr><td class="showLegend grey-text">Originally airs</td><td> $ show . airs #if not $ network_timezones . test_timeformat ( $ show . airs ) then ' <font color= " # FF0000"><b>(invalid Timeformat)</b></font> ' else '' #</td></tr>
2015-03-14 02:48:38 +00:00
#end if
2015-03-16 15:38:38 +00:00
#if ' ' != $ show . status :
2015-02-16 03:17:56 +00:00
<tr><td class="showLegend grey-text">Status</td><td> $ show . status </td></tr>
2015-03-16 15:38:38 +00:00
#end if
2015-03-14 02:48:38 +00:00
#if $ showLoc [ 1 ] :
2015-02-16 03:17:56 +00:00
<tr><td class="showLegend grey-text">Location</td><td> $ showLoc [0]</td></tr>
2015-03-14 02:48:38 +00:00
#else :
2015-02-16 03:17:56 +00:00
<tr><td class="showLegend grey-text"><span style="color: red;">Location</span></td><td><span style="color: red;"> $ showLoc [0]</span> (dir is missing)</td></tr>
2015-03-14 02:48:38 +00:00
#end if
#set $ anyQualities , $ bestQualities = $ Quality . splitQuality ( int ( $ show . quality ) )
2015-02-16 03:17:56 +00:00
<tr><td class="showLegend grey-text">Quality</td><td>
2015-03-14 02:48:38 +00:00
#if $ show . quality in $ qualityPresets :
<span class="quality $ qualityPresetStrings [ $ show . quality ]"> $ qualityPresetStrings [ $ show . quality ]</span>
#else :
#if $ anyQualities :
<i class="grey-text">Initial ...</i> <%= ', '.join([Quality.qualityStrings[x] for x in sorted(anyQualities)])%> #if $ bestQualities then ' </br> ' else ' ' #
#end if
#if $ bestQualities :
<i class="grey-text">Replace with ...</i> <%= ', '.join([Quality.qualityStrings[x] for x in sorted(bestQualities)])%>
#end if
#end if</td></tr>
2015-02-16 03:17:56 +00:00
<tr><td class="showLegend grey-text">Scene name</td><td> #if $ show . exceptions then $ exceptions_string else $ show . name # </td></tr>
2014-10-21 19:09:01 +00:00
2015-03-14 02:48:38 +00:00
#if $ show . rls_ignore_words :
2015-02-16 03:17:56 +00:00
<tr><td class="showLegend grey-text">Ignore with any of</td><td> #echo $ show . rls_ignore_words # </td></tr>
2015-03-14 02:48:38 +00:00
#end if
#if $ show . rls_require_words :
2015-02-16 03:17:56 +00:00
<tr><td class="showLegend grey-text">Require one of</td><td> #echo $ show . rls_require_words # </td></tr>
2015-03-14 02:48:38 +00:00
#end if
2015-01-19 14:27:48 +00:00
2015-03-14 02:48:38 +00:00
#if $ bwl and $ bwl . whitelist :
2015-02-16 03:17:56 +00:00
<tr><td class="showLegend grey-text">Whitelist group #if len ( $ bwl . whitelist ) > 1 then ' s ' else ' ' # </td>
2015-01-19 14:27:48 +00:00
<td> #echo ' , ' . join ( $ bwl . whitelist ) # </td>
2014-10-21 19:09:01 +00:00
</tr>
2015-03-14 02:48:38 +00:00
#end if
#if $ bwl and $ bwl . blacklist :
2015-02-16 03:17:56 +00:00
<tr><td class="showLegend grey-text">Blacklist group #if len ( $ bwl . blacklist ) > 1 then ' s ' else ' ' # </td>
2015-01-19 14:27:48 +00:00
<td> #echo ' , ' . join ( $ bwl . blacklist ) # </td>
2014-10-21 19:09:01 +00:00
</tr>
2015-03-14 02:48:38 +00:00
#end if
2014-10-21 19:09:01 +00:00
2015-02-16 03:17:56 +00:00
<tr><td class="showLegend grey-text">Size</td><td> $ sickbeard . helpers . human (sickbeard.helpers.get_size( $ showLoc [0]))</td></tr>
2014-10-21 19:09:01 +00:00
</table>
2015-02-16 03:17:56 +00:00
<table class="options-on-right">
2015-03-14 02:48:38 +00:00
#set $ no = ' no16.png " title= " No " alt= " No '
#set $ yes = ' yes16.png " title= " Yes " alt= " Yes '
<tr><td class="showLegendRight grey-text">Paused</td><td><img src=" $ sbRoot /images/ #echo ( $ no , $ yes ) [ 1 == int ( $ show . paused ) ] # " width="16" height="16" /></td></tr>
#if $ anyQualities + $ bestQualities
<tr><td class="showLegendRight grey-text">Archive on first match</td><td><img src=" $ sbRoot /images/ #echo ( $ no , $ yes ) [ 1 == int ( $ show . archive_firstmatch ) ] # " width="16" height="16" /></td></tr>
#end if
<tr><td class="showLegendRight grey-text">Flat folder structure</td><td><img src=" $ sbRoot /images/ #echo ( $ no , $ yes ) [ 1 == $ show . flatten_folders or $ sickbeard . NAMING_FORCE_FOLDERS ] # " width="16" height="16" /></td></tr>
<tr><td class="showLegendRight grey-text">Air by date naming</td><td><img src=" $ sbRoot /images/ #echo ( $ no , $ yes ) [ 1 == int ( $ show . air_by_date ) ] # " width="16" height="16" /></td></tr>
<tr><td class="showLegendRight grey-text">Use DVD order</td><td><img src=" $ sbRoot /images/ #echo ( $ no , $ yes ) [ 1 == int ( $ show . dvdorder ) ] # " width="16" height="16" /></td></tr>
<tr><td class="showLegendRight grey-text">Scene numbering</td><td><img src=" $ sbRoot /images/ #echo ( $ no , $ yes ) [ 1 == int ( $ show . scene ) ] # " width="16" height="16" /></td></tr>
#if $ sickbeard . USE_SUBTITLES
<tr><td class="showLegendRight grey-text">Subtitles</td><td><img src=" $ sbRoot /images/ #echo ( $ no , $ yes ) [ 1 == int ( $ show . subtitles ) ] # " width="16" height="16" /></td></tr>
#end if
<tr><td class="showLegendRight grey-text">Show is sports</td><td><img src=" $ sbRoot /images/ #echo ( $ no , $ yes ) [ 1 == int ( $ show . is_sports ) ] # " width="16" height="16" /></td></tr>
<tr><td class="showLegendRight grey-text">Show is anime</td><td><img src=" $ sbRoot /images/ #echo ( $ no , $ yes ) [ 1 == int ( $ show . is_anime ) ] # " width="16" height="16" /></td></tr>
2015-02-16 03:17:56 +00:00
<tr><td class="showLegendRight grey-text">Info language</td><td><img src=" $ sbRoot /images/flags/ ${ show . lang } .png" width="16" height="11" alt=" $ show . lang " title=" $ show . lang " /></td></tr>
2014-10-21 19:09:01 +00:00
</table>
</div>
</div>
2014-09-30 22:20:37 +00:00
</div>
2015-03-14 02:48:38 +00:00
2014-10-21 19:09:01 +00:00
<div class="clearfix"></div>
2015-03-14 02:48:38 +00:00
2014-10-21 19:09:01 +00:00
<div class="pull-left" style="padding-bottom: 10px;">
2014-09-30 22:20:37 +00:00
Change selected episodes to
2014-10-21 19:09:01 +00:00
<select id="statusSelect" class="form-control form-control-inline input-sm">
2015-03-14 02:48:38 +00:00
#for $ curStatus in [ $ WANTED , $ SKIPPED , $ ARCHIVED , $ IGNORED , $ FAILED ] + sorted ( $ Quality . DOWNLOADED ) :
#if $ DOWNLOADED == $ curStatus :
#continue
#end if
2014-09-30 22:20:37 +00:00
<option value=" $ curStatus "> $ statusStrings [ $ curStatus ]</option>
2015-03-14 02:48:38 +00:00
#end for
2014-09-30 22:20:37 +00:00
</select>
<input type="hidden" id="showID" value=" $ show . indexerid " />
<input type="hidden" id="indexer" value=" $ show . indexer " />
2014-10-21 19:09:01 +00:00
<input class="btn btn-inline" type="button" id="changeStatus" value="Go" />
2014-09-30 22:20:37 +00:00
</div>
2014-10-21 19:09:01 +00:00
<div class="pull-right clearfix" id="checkboxControls">
<div style="padding-bottom: 5px;">
<label for="wanted"><span class="wanted"><input type="checkbox" id="wanted" checked="checked" /> Wanted: <b> $ epCounts [ $ Overview . WANTED ]</b></span></label>
<label for="qual"><span class="qual"><input type="checkbox" id="qual" checked="checked" /> Low Quality: <b> $ epCounts [ $ Overview . QUAL ]</b></span></label>
<label for="good"><span class="good"><input type="checkbox" id="good" checked="checked" /> Downloaded: <b> $ epCounts [ $ Overview . GOOD ]</b></span></label>
<label for="skipped"><span class="skipped"><input type="checkbox" id="skipped" checked="checked" /> Skipped: <b> $ epCounts [ $ Overview . SKIPPED ]</b></span></label>
<label for="snatched"><span class="snatched"><input type="checkbox" id="snatched" checked="checked" /> Snatched: <b> $ epCounts [ $ Overview . SNATCHED ]</b></span></label>
</div>
<div class="pull-right" >
<button class="btn btn-xs seriesCheck">Select Filtered Episodes</button>
<button class="btn btn-xs clearAll">Clear All</button>
</div>
</div>
2014-03-10 05:18:05 +00:00
2015-03-14 02:48:38 +00:00
<br />
2014-09-30 22:20:37 +00:00
2015-03-14 02:48:38 +00:00
<table class="sickbeardTable display_show" cellspacing="0" border="0" cellpadding="0">
2014-03-10 05:18:05 +00:00
#set $ curSeason = - 1
#set $ odd = 0
2015-03-14 02:48:38 +00:00
#for $ epResult in $ sqlResults :
#set $ epStr = str ( $ epResult [ ' season ' ] ) + ' x ' + str ( $ epResult [ ' episode ' ] )
#if not $ epStr in $ epCats :
#continue
#end if
2014-09-30 22:20:37 +00:00
2015-03-14 02:48:38 +00:00
#if not $ sickbeard . DISPLAY_SHOW_SPECIALS and 0 == int ( $ epResult [ ' season ' ] ) :
#continue
#end if
2014-03-10 05:18:05 +00:00
2015-03-14 02:48:38 +00:00
#set $ scene = False
#set $ scene_anime = False
#if not $ show . air_by_date and not $ show . is_sports and not $ show . is_anime and $ show . is_scene :
#set $ scene = True
#elif not $ show . air_by_date and not $ show . is_sports and $ show . is_anime and $ show . is_scene :
#set $ scene_anime = True
#end if
2014-03-10 05:18:05 +00:00
2015-03-14 02:48:38 +00:00
#set ( $ dfltSeas , $ dfltEpis , $ dfltAbsolute ) = ( 0 , 0 , 0 )
2014-03-10 05:18:05 +00:00
2015-03-14 02:48:38 +00:00
#if ( epResult [ ' season ' ] , epResult [ ' episode ' ] ) in $ xem_numbering :
#set ( $ dfltSeas , $ dfltEpis ) = $ xem_numbering [ ( epResult [ ' season ' ] , epResult [ ' episode ' ] ) ]
#end if
2014-05-30 05:48:02 +00:00
2015-03-14 02:48:38 +00:00
#if epResult [ ' absolute_number ' ] in $ xem_absolute_numbering :
#set $ dfltAbsolute = $ xem_absolute_numbering [ epResult [ ' absolute_number ' ] ]
#end if
2014-09-30 22:20:37 +00:00
2015-03-14 02:48:38 +00:00
#if epResult [ ' absolute_number ' ] in $ scene_absolute_numbering :
#set $ scAbsolute = $ scene_absolute_numbering [ epResult [ ' absolute_number ' ] ]
#set $ dfltAbsNumbering = False
#else
#set $ scAbsolute = $ dfltAbsolute
#set $ dfltAbsNumbering = True
#end if
2014-05-30 05:48:02 +00:00
2015-03-14 02:48:38 +00:00
#if ( epResult [ ' season ' ] , epResult [ ' episode ' ] ) in $ scene_numbering :
#set ( $ scSeas , $ scEpis ) = $ scene_numbering [ ( epResult [ ' season ' ] , epResult [ ' episode ' ] ) ]
#set $ dfltEpNumbering = False
#else
#set ( $ scSeas , $ scEpis ) = ( $ dfltSeas , $ dfltEpis )
#set $ dfltEpNumbering = True
#end if
2014-09-30 22:20:37 +00:00
2015-03-14 02:48:38 +00:00
#if int ( $ epResult [ ' season ' ] ) != $ curSeason :
<tr id="season- $ epResult ['season']">
<th class="row-seasonheader" colspan="13" style="width: auto;"><h3><a name="season- $ epResult ['season']"></a> #if 0 == int ( $ epResult [ ' season ' ] ) then ' Specials ' else ' Season ' + str ( $ epResult [ ' season ' ] ) # </h3></th>
</tr>
2014-09-30 22:20:37 +00:00
2015-03-14 02:48:38 +00:00
<tr id="season- $ epResult ['season']-cols" class="seasoncols">
<th class="col-checkbox"><input type="checkbox" class="seasonCheck" id=" $ epResult ['season']" /></th>
<th class="col-metadata">NFO</th>
<th class="col-metadata">TBN</th>
<th class="col-ep">Episode</th>
#if $ show . is_anime :
<th class="col-ep">Absolute</th>
#end if
#if $ scene :
<th class="col-ep">Scene</th>
#end if
#if $ scene_anime :
<th class="col-ep">Scene Absolute</th>
#end if
<th class="col-name">Name</th>
<th class="col-airdate">Airdate</th>
#if $ sickbeard . USE_SUBTITLES and $ show . subtitles :
<th class="col-subtitles">Subtitles</th>
#end if
<th class="col-status">Status</th>
<th class="col-search">Search</th>
</tr>
#set $ curSeason = int ( $ epResult [ ' season ' ] )
#end if
#set $ epLoc = $ epResult [ ' location ' ]
2015-03-16 15:38:38 +00:00
#set never_aired = 0 < $ curSeason and 1 == int ( $ epResult [ ' airdate ' ] )
2014-09-30 22:20:37 +00:00
2015-03-17 17:51:17 +00:00
<tr class=" #echo ( $ Overview . overviewStrings [ $ epCats [ $ epStr ] ] , ' airdate-never ' ) [ $ never_aired ] # #echo ( ' ' , ' archived ' ) [ ARCHIVED == int ( $ epResult [ ' status ' ] ) ] # season- $ curSeason seasonstyle">
2014-09-30 22:20:37 +00:00
2015-03-14 02:48:38 +00:00
<td class="col-checkbox">
2015-03-16 15:38:38 +00:00
#if $ UNAIRED != int ( $ epResult [ ' status ' ] ) and not $ never_aired
2015-03-14 02:48:38 +00:00
<input type="checkbox" class="epCheck" id="<%=str(epResult['season'])+'x'+str(epResult['episode'])%>" name="<%=str(epResult['season']) +'x'+str(epResult['episode']) %>" />
#end if
</td>
2014-09-30 22:20:37 +00:00
2015-03-14 02:48:38 +00:00
<td align="center"><img src=" $ sbRoot /images/ #if 1 == $ epResult [ ' hasnfo ' ] then ' nfo.gif " alt= " Y ' else ' nfo-no.gif " alt= " N ' # " width="23" height="11" /></td>
2014-09-30 22:20:37 +00:00
2015-03-14 02:48:38 +00:00
<td align="center"><img src=" $ sbRoot /images/ #if 1 == $ epResult [ ' hastbn ' ] then ' tbn.gif " alt= " Y ' else ' tbn-no.gif " alt= " N ' # " width="23" height="11" /></td>
2014-09-30 22:20:37 +00:00
<td align="center">
2015-03-14 02:48:38 +00:00
#if $ epLoc and $ show . _location and $ epLoc . lower ( ) . startswith ( $ show . _location . lower ( ) ) :
#set $ epLoc = $ epLoc [ len ( $ show . _location ) + 1 : ]
#elif $ epLoc and ( not $ epLoc . lower ( ) . startswith ( $ show . _location . lower ( ) ) or not $ show . _location ) :
#set $ epLoc = $ epLoc
#end if
2014-09-30 22:20:37 +00:00
2015-03-14 02:48:38 +00:00
#if ' ' != $ epLoc and None != $ epLoc :
<span title=" $ epLoc " class="addQTip"> $ epResult ["episode"]</span>
#else
$ epResult ['episode']
#end if
2014-09-30 22:20:37 +00:00
</td>
2015-03-14 02:48:38 +00:00
#if $ show . is_anime :
<td align="center"> $ epResult ['absolute_number']</td>
#end if
2014-03-10 05:18:05 +00:00
2015-03-14 02:48:38 +00:00
#if $ scene :
<td align="center">
<input type="text" placeholder="<%=str(dfltSeas) + 'x' + str(dfltEpis)%>" size="6" maxlength="8"
class="sceneSeasonXEpisode form-control input-scene" data-for-season=" $ epResult ['season']" data-for-episode=" $ epResult ['episode']"
id="sceneSeasonXEpisode_ $ show . indexerid <%='_'+str(epResult['season'])+'_'+str(epResult['episode'])%>"
title="Change the value here if scene numbering differs from the indexer episode numbering"
#if $ dfltEpNumbering :
value=""
#else
value="<%=str(scSeas) + 'x' + str(scEpis)%>"
#end if
style="padding: 0; text-align: center; max-width: 60px;" />
</td>
#elif $ scene_anime :
<td align="center">
<input type="text" placeholder="<%=str(dfltAbsolute)%>" size="6" maxlength="8"
class="sceneAbsolute form-control input-scene" data-for-absolute=" $ epResult ['absolute_number']"
id="sceneAbsolute_ $ show . indexerid <%='_'+str(epResult['absolute_number'])%>"
title="Change the value here if scene absolute numbering differs from the indexer absolute numbering"
#if $ dfltAbsNumbering :
value=""
#else
value="<%=str(scAbsolute)%>"
#end if
style="padding: 0; text-align: center; max-width: 60px;" />
</td>
#end if
2014-09-30 22:20:37 +00:00
2014-10-21 19:09:01 +00:00
<td class="col-name">
2015-03-14 02:48:38 +00:00
#if ' ' != $ epResult [ ' description ' ] and None != $ epResult [ ' description ' ] :
<img src=" $ sbRoot /images/info32.png" width="16" height="16" class="plotInfo" alt="" id="plot_info_ $ show . indexerid <%='_' + str(epResult['season']) + '_' + str(epResult['episode'])%>" />
#else :
<img src=" $ sbRoot /images/info32.png" width="16" height="16" class="plotInfoNone" alt="" />
#end if
$ epResult ['name']
2014-09-30 22:20:37 +00:00
</td>
2014-10-21 19:09:01 +00:00
<td class="col-airdate">
2015-03-14 02:48:38 +00:00
<span class=" ${ fuzzydate } "> #if 1 == int ( $ epResult [ ' airdate ' ] ) then ' never ' else $ sbdatetime . sbdatetime . sbfdate ( $ sbdatetime . sbdatetime . convert_to_setting ( $ network_timezones . parse_date_time ( $ epResult [ ' airdate ' ] , $ show . airs , $ show . network ) ) ) # </span>
2014-09-30 22:20:37 +00:00
</td>
2015-03-14 02:48:38 +00:00
#if $ sickbeard . USE_SUBTITLES and $ show . subtitles :
<td class="col-subtitles" align="center">
#if $ epResult [ ' subtitles ' ] :
#for $ sub_lang in subliminal . language . language_list ( $ epResult [ ' subtitles ' ] . split ( ' , ' ) ) :
#if ' ' != sub_lang . alpha2
<img src=" $ sbRoot /images/flags/ ${ sub_lang . alpha2 } .png" width="16" height="11" alt=" ${ sub_lang } " />
#end if
#end for
2014-09-30 22:20:37 +00:00
#end if
2015-03-14 02:48:38 +00:00
</td>
#end if
2014-09-30 22:20:37 +00:00
2015-03-14 02:48:38 +00:00
#set $ curStatus , $ curQuality = $ Quality . splitCompositeStatus ( int ( $ epResult [ ' status ' ] ) )
#if Quality . NONE != $ curQuality :
<td class="col-status"> $ statusStrings [ $ curStatus ] <span class="quality $ Quality . qualityStrings [ $ curQuality ].replace('720p','HD720p').replace('1080p','HD1080p').replace('RawHD TV', 'RawHD').replace('HD TV', 'HD720p')"> $ Quality . qualityStrings [ $ curQuality ]</span></td>
#else :
<td class="col-status"> $ statusStrings [ $ curStatus ]</td>
#end if
2014-10-21 19:09:01 +00:00
<td class="col-search">
2015-03-14 02:48:38 +00:00
#if 0 != int ( $ epResult [ ' season ' ] ) :
#if ( int ( $ epResult [ ' status ' ] ) in $ Quality . SNATCHED or int ( $ epResult [ ' status ' ] ) in $ Quality . DOWNLOADED ) and $ sickbeard . USE_FAILED_DOWNLOADS :
<a class="epRetry" id="<%=str(epResult['season'])+'x'+str(epResult['episode'])%>" name="<%=str(epResult['season']) +'x'+str(epResult['episode']) %>" href="retryEpisode?show= $ show . indexerid &season= $ epResult ['season']&episode= $ epResult ['episode']"><img src=" $ sbRoot /images/search16.png" height="16" alt="retry" title="Retry Download" /></a>
#else :
<a class="epSearch" id="<%=str(epResult['season'])+'x'+str(epResult['episode'])%>" name="<%=str(epResult['season']) +'x'+str(epResult['episode']) %>" href="searchEpisode?show= $ show . indexerid &season= $ epResult ['season']&episode= $ epResult ['episode']"><img src=" $ sbRoot /images/search16.png" width="16" height="16" alt="search" title="Manual Search" /></a>
#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 ' ]
<a class="epSubtitlesSearch" href="searchEpisodeSubtitles?show= $ show . indexerid &season= $ epResult ['season']&episode= $ epResult ['episode']"><img src=" $ sbRoot /images/closed_captioning.png" height="16" alt="search subtitles" title="Search Subtitles" /></a>
#end if
2014-09-30 22:20:37 +00:00
</td>
</tr>
2015-03-14 02:48:38 +00:00
#end for
2014-03-10 05:18:05 +00:00
</table>
2015-01-24 23:46:13 +00:00
#include $ os . path . join ( $ sickbeard . PROG_DIR , ' gui/slick/interfaces/default/inc_bottom.tmpl ' )