3
0
corteza/crm/data/enum.ejs
2018-07-16 00:14:50 +02:00

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>