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

8 lines
463 B
Plaintext

<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>
</tr>
<% end %>
</table>