mirror of
https://github.com/SickGear/SickGear.git
synced 2024-12-03 18:03:37 +00:00
97429c084f
Change list order of option on the right of the displayShow page to be mostly inline with the order of options on editShow. Change legend wording and text colour on the displayShow page. Add output message if no release group results are available. Add cleansing of text used in the processes to a add a show. Add sorting of AniDB available group results. Add error handling and related UI feedback to reflect result of AniDB communications. Change description of config/search ignore and require words.
83 lines
No EOL
3.2 KiB
Cheetah
83 lines
No EOL
3.2 KiB
Cheetah
#import sickbeard
|
|
#from sickbeard.common import *
|
|
#from sickbeard import subtitles
|
|
|
|
<div class="field-pair">
|
|
<label for="statusSelect">
|
|
<span class="component-title input">Initial episode status</span>
|
|
<span class="component-desc">
|
|
<select name="defaultStatus" id="statusSelect" class="form-control form-control-inline input-sm">
|
|
#for $curStatus in [$SKIPPED, $WANTED, $ARCHIVED, $IGNORED]:
|
|
<option value="$curStatus" #if $sickbeard.STATUS_DEFAULT == $curStatus then 'selected="selected"' else ''#>$statusStrings[$curStatus]</option>
|
|
#end for
|
|
</select>
|
|
<span>set the initial status of missing episodes</span>
|
|
</span>
|
|
</label>
|
|
</div>
|
|
|
|
<div class="field-pair alt">
|
|
<p class="grey-text">Tip: The following options are <span style="font-weight:800">edit</span>able later in the detail view of the show</p>
|
|
</div>
|
|
|
|
<div class="field-pair">
|
|
#set $qualities = $Quality.splitQuality($sickbeard.QUALITY_DEFAULT)
|
|
#set global $anyQualities = $qualities[0]
|
|
#set global $bestQualities = $qualities[1]
|
|
#include $os.path.join($sickbeard.PROG_DIR, 'gui/slick/interfaces/default/inc_qualityChooser.tmpl')
|
|
</div>
|
|
|
|
<div class="field-pair alt">
|
|
<label for="flatten_folders">
|
|
<span class="component-title">Flat folder structure</span>
|
|
<span class="component-desc">
|
|
<input class="cb" type="checkbox" name="flatten_folders" id="flatten_folders" #if $sickbeard.FLATTEN_FOLDERS_DEFAULT then "checked=\"checked\"" else ""# />
|
|
<p>do not create sub folders</p>
|
|
</span>
|
|
</label>
|
|
</div>
|
|
|
|
<div class="field-pair alt">
|
|
<label for="scene">
|
|
<span class="component-title">Scene numbering</span>
|
|
<span class="component-desc">
|
|
<input type="checkbox" name="scene" id="scene" #if $sickbeard.SCENE_DEFAULT then "checked=\"checked\"" else ""# />
|
|
<p>search for episodes that are numbered by scene groups instead of by the TV network</p>
|
|
</span>
|
|
</label>
|
|
</div>
|
|
|
|
#if $sickbeard.USE_SUBTITLES:
|
|
<div class="field-pair alt">
|
|
<label for="subtitles">
|
|
<span class="component-title">Subtitles</span>
|
|
<span class="component-desc">
|
|
<input type="checkbox" name="subtitles" id="subtitles" #if $sickbeard.SUBTITLES_DEFAULT then "checked=\"checked\"" else ""# />
|
|
<p>download subtitles for this show</p>
|
|
</span>
|
|
</label>
|
|
</div>
|
|
#end if
|
|
|
|
<div class="field-pair alt">
|
|
<label for="anime">
|
|
<span class="component-title">Show is anime</span>
|
|
<span class="component-desc">
|
|
<input type="checkbox" name="anime" id="anime" #if $sickbeard.ANIME_DEFAULT then "checked=\"checked\"" else ""# />
|
|
<p>enable if this show is anime and episode releases are named ... <em class="grey-text">Show.265</em> instead of <em class="grey-text">Show.S02E03</em></p>
|
|
</span>
|
|
</label>
|
|
</div>
|
|
|
|
<div class="field-pair alt" style="margin-top:20px">
|
|
<label for="saveDefaultsButton">
|
|
<span class="component-title">Save options as defaults</span>
|
|
<span class="component-desc">
|
|
<input class="btn btn-inline" type="button" id="saveDefaultsButton" value="Save Defaults" disabled="disabled" />
|
|
<p>reuse the above options when adding more shows</p>
|
|
</span>
|
|
</label>
|
|
</div>
|
|
|
|
#import sickbeard.blackandwhitelist
|
|
#include $os.path.join($sickbeard.PROG_DIR, 'gui/slick/interfaces/default/inc_blackwhitelist.tmpl') |