mirror of
https://github.com/moparisthebest/SickRage
synced 2024-10-31 23:45:02 -04:00
29 lines
1.0 KiB
Cheetah
29 lines
1.0 KiB
Cheetah
|
#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" />
|
||
|
<div style="padding: 10px 0 5px;">
|
||
|
<select name="rootDir" id="rootDirs" size="6" style="min-width: 500px;">
|
||
|
#for $cur_dir in $backend_dirs:
|
||
|
<option value="$cur_dir">$cur_dir</option>
|
||
|
#end for
|
||
|
</select>
|
||
|
</div>
|
||
|
<div id="rootDirsControls" style="text-align: center; width: 500px;">
|
||
|
<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 />
|