< div class = "modal-header" >
< button type = "button" class = "close" data-dismiss = "modal" aria-hidden = "true" > × < / button >
< h3 > Edit: {{title}}< / h3 >
< / div >
< div class = "modal-body" >
< div class = "form-horizontal" >
< div class = "control-group" >
< label class = "control-label" > Monitored< / label >
< div class = "controls" >
< label class = "checkbox toggle well" >
< input type = "checkbox" name = "monitored" / >
< p >
< span > Yes< / span >
< span > No< / span >
< / p >
< div class = "btn btn-primary slide-button" > < / div >
< / label >
< span class = "help-inline-checkbox" >
< i class = "icon-question-sign" title = "Should NzbDrone download episodes for this series?" > < / i >
< / span >
< / div >
< / div >
< div class = "control-group" >
< label class = "control-label" > Use Season Folder< / label >
< div class = "controls" >
< label class = "checkbox toggle well" >
< input type = "checkbox" name = "seasonFolder" / >
< p >
< span > Yes< / span >
< span > No< / span >
< / p >
< div class = "btn btn-primary slide-button" > < / div >
< / label >
< span class = "help-inline-checkbox" >
< i class = "icon-question-sign" title = "Should downloaded episodes be stored in season folders?" > < / i >
< / span >
< / div >
< / div >
< div class = "control-group" >
< label class = "control-label" for = "inputQualityProfile" > Quality Profile< / label >
< div class = "controls" >
< select class = "x-quality-profile" id = "inputQualityProfile" name = "qualityProfileId" >
{{#each qualityProfiles.models}}
< option value = "{{id}}" > {{attributes.name}}< / option >
{{/each}}
< / select >
< span class = "help-inline" >
< i class = "icon-question-sign" title = "Which Quality Profile should NzbDrone use to download episodes?" > < / i >
< / span >
< / div >
< / div >
< div class = "control-group" >
< label class = "control-label" for = "inputPath" > Path< / label >
< div class = "controls" >
< input type = "text" id = "inputPath" placeholder = "Path" name = "path" >
< span class = "help-inline" >
< i class = "icon-question-sign" title = "Where should NzbDrone store episodes for this series?" > < / i >
< / span >
< / div >
< / div >
< div class = "control-group" >
< label class = "control-label" for = "inputBacklogSetting" > Backlog Setting< / label >
< div class = "controls" >
< select id = "inputBacklogSetting" class = "inputClass x-backlog-setting" name = "backlogSetting" >
< option value = "inherit" > Inherit< / option >
< option value = "enable" > Enable< / option >
< option value = "disable" > Disable< / option >
< / select >
< span class = "help-inline" >
< i class = "icon-question-sign" title = "Should NzbDrone search for missing episodes every 30 days?" > < / i >
< / span >
< / div >
< / div >
< div class = "control-group" >
< label class = "control-label" for = "inputCustomStartDate" > Custom Start Date< / label >
< div class = "controls" >
< input type = "date" id = "inputCustomStartDate" name = "customStartDate" >
< span class = "help-inline" >
< i class = "icon-question-sign" title = "Should NzbDrone only download episodes after your preferred start date?" > < / i >
< / span >
< / div >
< / div >
< / div >
< / div >
< div class = "modal-footer" >
< button class = "btn btn-danger pull-left x-remove" > delete< / button >
< button class = "btn" data-dismiss = "modal" > cancel< / button >
< button class = "btn btn-primary x-save" > save< / button >
< / div >