| Select | Amount | Unit & Measurement |
|---|---|---|
| <%= radio_button_tag 'weight_id', 'grams' %> | <%= text_field_tag "amount_grams", 100, :class => 'small_text' %> | 1 Gram (1g) |
| <%= radio_button_tag 'weight_id', 'ounces' %> | <%= text_field_tag "amount_ounces", 1, :class => 'small_text' %> | 1 Ounce (28g) |
| <%= radio_button_tag 'weight_id', w.id %> | <%= text_field_tag "amount_#{w.id}", w.amount, :class => 'small_text' %> | <%= w.amount %> <%= w.msre_desc %> (<%= w.gm_wgt %>g) |
<%= submit_tag 'Recalculate' %>
<% end %>