2014-03-10 01:18:05 -04:00
#import os . path
#import sickbeard
2014-11-08 21:49:38 -05:00
#from sickbeard . helpers import anon_url
2014-03-10 01:18:05 -04:00
#set global $ header = " New Show "
#set global $ title = " New Show "
#set global $ sbPath = " ../.. "
#set global $ statpath = " ../.. " #
#set global $ topmenu = " home " #
#import os . path
#include $ os . path . join ( $ sickbeard . PROG_DIR , " gui/slick/interfaces/default/inc_top.tmpl " )
<script type="text/javascript" src=" $ sbRoot /js/formwizard.js? $ sbPID "></script>
<script type="text/javascript" src=" $ sbRoot /js/qualityChooser.js? $ sbPID "></script>
<script type="text/javascript" src=" $ sbRoot /js/newShow.js? $ sbPID "></script>
2014-09-30 18:20:37 -04:00
<script type="text/javascript" src=" $ sbRoot /js/addShowOptions.js? $ sbPID "></script>
2014-03-10 01:18:05 -04:00
#if $ varExists ( ' header ' )
<h1 class="header"> $ header </h1>
#else
<h1 class="title"> $ title </h1>
#end if
2014-10-21 15:09:01 -04:00
<div id="newShowPortal">
2014-11-15 15:15:06 -05:00
<div id="config-components">
<ul>
<li><a href=" #core - component - group1 " >Add New Show</a></li>
</ul>
2014-10-21 15:09:01 -04:00
2014-11-15 15:15:06 -05:00
<div id="core-component-group1" class="tab-pane active component-group">
2014-10-21 15:09:01 -04:00
<div id="displayText">aoeu</div>
<br />
2014-11-15 15:15:06 -05:00
<form id="addShowForm" method="post" action=" $ sbRoot /home/addShows/addNewShow" accept-charset="utf-8">
2014-10-21 15:09:01 -04:00
<fieldset class="sectionwrap">
<legend class="legendStep">Find a show on the TVDB or TVRAGE</legend>
<div class="stepDiv">
<input type="hidden" id="indexer_timeout" value=" $ sickbeard . INDEXER_TIMEOUT " />
#if $ use_provided_info :
2014-12-12 21:49:52 -05:00
Show retrieved from existing metadata: <a href=" $ anon_url ( $ sickbeard . indexerApi ( $ provided_indexer ).config['show_url'], $ provided_indexer_id )"> $ provided_indexer_name </a>
<input type="hidden" id="indexerLang" name="indexerLang" value="en" />
<input type="hidden" id="whichSeries" name="whichSeries" value=" $ provided_indexer_id " />
<input type="hidden" id="providedIndexer" name="providedIndexer" value=" $ provided_indexer " />
2014-10-21 15:09:01 -04:00
<input type="hidden" id="providedName" value=" $ provided_indexer_name " />
#else :
<input type="text" id="nameToSearch" value=" $ default_show_name " class="form-control form-control-inline input-sm input350" />
2014-11-15 15:15:06 -05:00
2014-10-21 15:09:01 -04:00
<select name="indexerLang" id="indexerLangSelect" class="form-control form-control-inline input-sm">
<option value="en" selected="selected">en</option>
</select><b>*</b>
<select name="providedIndexer" id="providedIndexer" class="form-control form-control-inline input-sm">
<option value="0" #if $ provided_indexer == 0 then " selected= \" selected \" " else " " # >All Indexers</option>
#for $ indexer in $ indexers
2015-01-24 14:00:09 -05:00
<option value=" $ indexer " #if $ provided_indexer == $ indexer then " selected= \" selected \" " else " " # >
2015-01-24 17:20:26 -05:00
#if $ indexers [ $ indexer ] == ' TVRage ' then ' ' . join ( ( $ indexers [ $ indexer ] , ' ** ' ) ) else $ indexers [ $ indexer ] # </option>
2014-10-21 15:09:01 -04:00
#end for
</select>
<input class="btn btn-inline" type="button" id="searchName" value="Search" />
2014-11-15 15:15:06 -05:00
<br /><br />
2014-10-21 15:09:01 -04:00
<b>*</b> This will only affect the language of the retrieved metadata file contents and episode filenames.<br />
This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!<br />
2015-01-24 14:00:09 -05:00
<b>**</b> The indexer implementation doesn't currently support specials.<br />
2014-10-21 15:09:01 -04:00
<br />
<div id="searchResults" style="height: 100%;"><br/></div>
#end if
</div>
</fieldset>
<fieldset class="sectionwrap">
<legend class="legendStep">Pick the parent folder</legend>
<div class="stepDiv">
#if $ provided_show_dir :
Pre-chosen Destination Folder: <b> $ provided_show_dir </b> <br />
<input type="hidden" id="fullShowPath" name="fullShowPath" value=" $ provided_show_dir " /><br />
#else
#include $ os . path . join ( $ sickbeard . PROG_DIR , " gui/slick/interfaces/default/inc_rootDirs.tmpl " )
#end if
</div>
</fieldset>
<fieldset class="sectionwrap">
<legend class="legendStep">Customize options</legend>
<div class="stepDiv">
#include $ os . path . join ( $ sickbeard . PROG_DIR , " gui/slick/interfaces/default/inc_addShowOptions.tmpl " )
2014-09-30 18:20:37 -04:00
</div>
2014-10-21 15:09:01 -04:00
</fieldset>
#for $ curNextDir in $ other_shows :
<input type="hidden" name="other_shows" value=" $ curNextDir " />
#end for
<input type="hidden" name="skipShow" id="skipShow" value="" />
</form>
2014-03-10 01:18:05 -04:00
<br />
2014-09-30 18:20:37 -04:00
<div style="width: 100%; text-align: center;">
2014-03-10 01:18:05 -04:00
<input class="btn" type="button" id="addShowButton" value="Add Show" disabled="disabled" />
#if $ provided_show_dir :
<input class="btn" type="button" id="skipShowButton" value="Skip Show" />
#end if
</div>
<script type="text/javascript" src=" $ sbRoot /js/rootDirs.js? $ sbPID "></script>
2014-11-15 15:15:06 -05:00
</div></div></div></div>
2014-09-30 18:20:37 -04:00
2014-03-10 01:18:05 -04:00
#include $ os . path . join ( $ sickbeard . PROG_DIR , " gui/slick/interfaces/default/inc_bottom.tmpl " )