8 lines
462 B
Plaintext
8 lines
462 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> |