34 lines
806 B
PHP
34 lines
806 B
PHP
<label>
|
|
|
|
<# if ( data.label ) { #>
|
|
<span class="butterbean-label">{{ data.label }}</span>
|
|
<# } #>
|
|
|
|
<# if ( data.description ) { #>
|
|
<span class="butterbean-description">{{{ data.description }}}</span>
|
|
<# } #>
|
|
|
|
<select {{{ data.attr }}}>
|
|
|
|
<# _.each( data.choices, function( label, choice ) { #>
|
|
|
|
<option value="{{ choice }}" <# if ( choice === data.value ) { #> selected="selected" <# } #>>{{ label }}</option>
|
|
|
|
<# } ) #>
|
|
|
|
<# _.each( data.group, function( group ) { #>
|
|
|
|
<optgroup label="{{ group.label }}">
|
|
|
|
<# _.each( group.choices, function( label, choice ) { #>
|
|
|
|
<option value="{{ choice }}" <# if ( choice === data.value ) { #> selected="selected" <# } #>>{{ label }}</option>
|
|
|
|
<# } ) #>
|
|
|
|
</optgroup>
|
|
<# } ) #>
|
|
|
|
</select>
|
|
</label>
|