jam-cloud/web/app/views/users/_instrument_selector.html.erb

8 lines
462 B
Plaintext
Raw Normal View History

2013-03-08 06:45:06 +00:00
<table class="instrument_selector" width="100%" cellpadding="0" cellspacing="6">
<% Instrument.standard_list.each do |instrument| %>
<tr>
<td><input name="<%= instrument.id %>" type="checkbox" /><%= instrument.description %></td>
<td align="right" width="50%"><select class='proficiency_selector'<option value="1">Beginner</option><option value="2">Intermediate</option><option value="3">Expert</option></select></td>
2013-03-08 06:45:06 +00:00
</tr>
<% end %>
</table>