1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-10 21:12:56 +01:00
Radarr/UI/Form/SelectTemplate.html
2013-06-13 00:20:33 -07:00

16 lines
479 B
HTML

<div class="control-group">
<label class="control-label">{{label}}</label>
<div class="controls">
<select name="fields.{{order}}.value">
{{#each selectOptions}}
<option value="{{value}}">{{name}}</option>
{{/each}}
</select>
{{#if helpText}}
<span class="help-inline">
<i class="icon-question-sign" title="{{helpText}}"></i>
</span>
{{/if}}
</div>
</div>