local changes from server
[fnpeditor.git] / src / editor / views / dialog / templates / select.html
1 <div>
2     <div style="float: left; width:100px;"><%= label %>:</div>
3     <select name="<%= name %>">
4     <% options.forEach(function(option) { %>
5         <option <% if (initialValue == option.value) { %>selected="selected" <% } %>value="<%= option.value %>"><%= option.text %></option>
6     <% }); %>
7     </select>
8     <span class="description"><%= description %></span>
9 </div>