mirror of
https://github.com/SickGear/SickGear.git
synced 2024-12-11 21:53:37 +00:00
95d7d728e0
Re-write of New Show seearch function Re-write of Existing show search helper function for determining indexer/indexerid Massive code cleanup and more bugs found and fixed Indexer code fully modualized for future proofing
42 lines
No EOL
1.5 KiB
Cheetah
42 lines
No EOL
1.5 KiB
Cheetah
#import sickbeard
|
|
|
|
<table id="addRootDirTable" class="sickbeardTable tablesorter">
|
|
<thead><tr><th width="1%"><input type="checkbox" id="checkAll" checked=checked></th><th>Directory</th><th width="20%">Show Name (tvshow.nfo)<th width="20%">Indexer</td></tr></thead>
|
|
<tfoot>
|
|
<tr>
|
|
<th rowspan="1" colspan="3" align="left"><a href="#" style="padding-left: 10px;" class="showManage">Manage Directories</a></th>
|
|
</tr>
|
|
</tfoot>
|
|
<tbody>
|
|
#for $curDir in $dirList:
|
|
#if $curDir['added_already']:
|
|
#continue
|
|
#end if
|
|
|
|
#set $show_id = $curDir['dir']
|
|
#set $indexer = 1
|
|
#if $curDir['existing_info'][0]:
|
|
#set $show_id = $show_id + '|' + $str($curDir['existing_info'][0]) + '|' + $str($curDir['existing_info'][1])
|
|
#set $indexer = $curDir['existing_info'][2]
|
|
#end if
|
|
|
|
<tr>
|
|
<td><input type="checkbox" id="$show_id" class="dirCheck" checked=checked></td>
|
|
<td><label for="$show_id">$curDir['display_dir']</label></td>
|
|
#if $curDir['existing_info'][1]:
|
|
<td><a href="$sickbeard.indexerApi($indexer).config["show_url"]$curDir['existing_info'][0]">$curDir['existing_info'][1]</a></td>
|
|
#else:
|
|
<td>?</td>
|
|
#end if
|
|
<td>
|
|
<select name="indexer">
|
|
#for $curIndexer in $sickbeard.indexerApi().indexers.items():
|
|
<option value="$curIndexer[0]" #if $curIndexer[0] == $indexer then "selected=\"selected\"" else ""#>$curIndexer[1]</option>
|
|
#end for
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
#end for
|
|
</tbody>
|
|
</tbody>
|
|
</table> |