2014-03-10 05:18:05 +00:00
|
|
|
#import sickbeard
|
2015-05-07 00:36:40 +00:00
|
|
|
#import urllib
|
|
|
|
##
|
2014-11-20 22:25:33 +00:00
|
|
|
#set global $title = 'Add Show'
|
|
|
|
#set global $header = 'Add Show'
|
|
|
|
#set global $sbPath = '../..'
|
|
|
|
#set global $statpath = '../..'
|
|
|
|
#set global $topmenu = 'home'
|
2015-05-07 00:36:40 +00:00
|
|
|
##
|
2014-03-10 05:18:05 +00:00
|
|
|
#import os.path
|
2014-11-20 22:25:33 +00:00
|
|
|
#include $os.path.join($sickbeard.PROG_DIR, 'gui/slick/interfaces/default/inc_top.tmpl')
|
2014-10-21 19:09:01 +00:00
|
|
|
|
2015-09-24 18:19:44 +00:00
|
|
|
#if $varExists('header')
|
2014-03-10 05:18:05 +00:00
|
|
|
<h1 class="header">$header</h1>
|
2015-09-24 18:19:44 +00:00
|
|
|
#else
|
2014-03-10 05:18:05 +00:00
|
|
|
<h1 class="title">$title</h1>
|
|
|
|
#end if
|
|
|
|
|
2014-11-20 22:25:33 +00:00
|
|
|
<div id="addShowPortal">
|
|
|
|
<a class="btn btn-large" href="$sbRoot/home/addShows/newShow/">
|
|
|
|
<div class="button"><div class="icon-addnewshow"></div></div>
|
|
|
|
<div class="buttontext">
|
|
|
|
<h3>Add New Show</h3>
|
2015-09-24 18:19:44 +00:00
|
|
|
<p>Search a TV database for a show to add.</p>
|
2014-11-20 22:25:33 +00:00
|
|
|
</div>
|
|
|
|
</a>
|
|
|
|
|
2015-09-24 18:19:44 +00:00
|
|
|
<a class="btn btn-large" href="$sbRoot/home/addShows/traktTrending/">
|
|
|
|
<div class="button"><div class="icon-addrecommendedshow"></div></div>
|
2014-11-20 22:25:33 +00:00
|
|
|
<div class="buttontext">
|
2015-09-24 18:19:44 +00:00
|
|
|
<h3>Add From Trakt</h3>
|
|
|
|
<p>Browse trends, recommended and more.</p>
|
2014-11-20 22:25:33 +00:00
|
|
|
</div>
|
|
|
|
</a>
|
|
|
|
|
2015-09-24 18:19:44 +00:00
|
|
|
<div style="clear:both;font-size:2px"> </div>
|
|
|
|
|
2014-11-20 22:25:33 +00:00
|
|
|
<a class="btn btn-large" href="$sbRoot/home/addShows/existingShows/">
|
|
|
|
<div class="button"><div class="icon-addexistingshow"></div></div>
|
|
|
|
<div class="buttontext">
|
|
|
|
<h3>Add Existing Shows</h3>
|
2015-09-24 18:19:44 +00:00
|
|
|
<p>Scan parent folders to import into SickGear.</p>
|
2014-11-20 22:25:33 +00:00
|
|
|
</div>
|
|
|
|
</a>
|
|
|
|
|
2015-09-24 18:19:44 +00:00
|
|
|
<div style="clear:both;font-size:2px"> </div>
|
|
|
|
|
2014-11-20 22:25:33 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
2015-09-24 18:19:44 +00:00
|
|
|
#include $os.path.join($sickbeard.PROG_DIR, 'gui/slick/interfaces/default/inc_bottom.tmpl')
|