mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-23 22:25:14 -04:00
21 lines
724 B
HTML
21 lines
724 B
HTML
<div class="form-group">
|
|
<label class="control-label">Name</label>
|
|
<div class="controls">
|
|
<input type="text" name="name">
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<label class="control-label">Cutoff</label>
|
|
<div class="controls">
|
|
<select class="x-cutoff" name="cutoff.id" validation-name="cutoff">
|
|
{{#eachReverse items}}
|
|
{{#if allowed}}
|
|
<option value="{{quality.id}}">{{quality.name}}</option>
|
|
{{/if}}
|
|
{{/eachReverse}}
|
|
</select>
|
|
<span class="help-inline">
|
|
<i class="icon-nd-form-info" title="Once this quality is reached NzbDrone will no longer download episodes"/>
|
|
</span>
|
|
</div>
|
|
</div> |