8 lines
213 B
Plaintext
8 lines
213 B
Plaintext
<select name="{name}" class="form-control form-control-sm">
|
|
<% for (var key in values) {
|
|
var val = values[key];
|
|
%>
|
|
<option value="{key}"{if value == key} selected="selected"{/if}>{val}</option>
|
|
<% } %>
|
|
</select>
|