2014-03-10 01:18:05 -04:00
|
|
|
#import sickbeard
|
|
|
|
<span id="sampleRootDir"></span>
|
|
|
|
|
|
|
|
#if $sickbeard.ROOT_DIRS:
|
|
|
|
#set $backend_pieces = $sickbeard.ROOT_DIRS.split('|')
|
|
|
|
#set $backend_default = 'rd-' + $backend_pieces[0]
|
|
|
|
#set $backend_dirs = $backend_pieces[1:]
|
|
|
|
#else:
|
|
|
|
#set $backend_default = ''
|
|
|
|
#set $backend_dirs = []
|
|
|
|
#end if
|
|
|
|
|
|
|
|
<input type="hidden" id="whichDefaultRootDir" value="$backend_default" />
|
2014-09-30 18:20:37 -04:00
|
|
|
<div style="padding: 10px 0 5px; width: 670px; margin-left: auto; margin-right: auto;">
|
|
|
|
<select name="rootDir" id="rootDirs" size="6" style="width: 670px;">
|
2014-03-10 01:18:05 -04:00
|
|
|
#for $cur_dir in $backend_dirs:
|
|
|
|
<option value="$cur_dir">$cur_dir</option>
|
|
|
|
#end for
|
|
|
|
</select>
|
|
|
|
</div>
|
2014-09-30 18:20:37 -04:00
|
|
|
<div id="rootDirsControls" style="text-align: center; width: 670px; margin-left: auto; margin-right: auto;">
|
2014-03-10 01:18:05 -04:00
|
|
|
<input class="btn" type="button" id="addRootDir" value="New" />
|
|
|
|
<input class="btn" type="button" id="editRootDir" value="Edit" />
|
|
|
|
<input class="btn" type="button" id="deleteRootDir" value="Delete" />
|
|
|
|
<input class="btn" type="button" id="defaultRootDir" value="Set as Default *" />
|
|
|
|
</div>
|
|
|
|
<input type="text" style="display: none" id="rootDirText" />
|
|
|
|
<br />
|