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