mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-24 22:35:49 -04:00
60 lines
1.6 KiB
Handlebars
60 lines
1.6 KiB
Handlebars
<div class="form-group">
|
|
<label class="col-sm-3 control-label">Name</label>
|
|
|
|
<div class="col-sm-5">
|
|
<input type="text" name="name" class="form-control">
|
|
</div>
|
|
</div>
|
|
|
|
<hr>
|
|
|
|
<div class="form-group">
|
|
<label class="col-sm-3 control-label">Language</label>
|
|
|
|
<div class="col-sm-5">
|
|
<select class="form-control" name="language">
|
|
{{#each languages}}
|
|
{{#unless_eq nameLower compare="unknown"}}
|
|
<option value="{{nameLower}}">{{name}}</option>
|
|
{{/unless_eq}}
|
|
{{/each}}
|
|
</select>
|
|
</div>
|
|
|
|
<div class="col-sm-1 help-inline">
|
|
<i class="icon-sonarr-form-info" title="Series assigned this profile will be look for episodes with the selected language"/>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div class="form-group">
|
|
<label class="col-sm-3 control-label">Preferred Tags</label>
|
|
|
|
<div class="col-sm-1 col-sm-push-5 help-inline">
|
|
<i class="icon-sonarr-form-info" title="When the release contains these tags it will be preferred. Case Insensitive." />
|
|
</div>
|
|
|
|
<div class="col-sm-5 col-sm-pull-1">
|
|
<input type="text" name="preferredTags" class="form-control x-preferred"/>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div class="form-group">
|
|
<label class="col-sm-3 control-label">Cutoff</label>
|
|
|
|
<div class="col-sm-5">
|
|
<select class="form-control x-cutoff" name="cutoff.id" validation-name="cutoff">
|
|
{{#eachReverse items}}
|
|
{{#if allowed}}
|
|
<option value="{{quality.id}}">{{quality.name}}</option>
|
|
{{/if}}
|
|
{{/eachReverse}}
|
|
</select>
|
|
</div>
|
|
|
|
<div class="col-sm-1 help-inline">
|
|
<i class="icon-sonarr-form-info" title="Once this quality is reached Radarr will no longer download episodes"/>
|
|
</div>
|
|
</div>
|