Skip to content

Instantly share code, notes, and snippets.

@ryanhanks
Created July 31, 2009 17:04
Show Gist options
  • Save ryanhanks/159323 to your computer and use it in GitHub Desktop.
Save ryanhanks/159323 to your computer and use it in GitHub Desktop.
<h1>Promotional Merchandise Request</h1>
<h2>Available Items</h2>
<% form_for @order do |order_form| %>
<table>
<% order_form.fields_for :line_items do |line_item_form| %>
<% product = line_item_form.object.product %>
<%= line_item_form.hidden_field :product_id %>
<tr>
<td><%= image_tag product.image.url %></td>
<td><%= product.name %></td>
<td><%= product.description %></td>
<td>
<%= line_item_form.label :quantity %>
<%= line_item_form.text_field :quantity %></td>
</tr>
<% end %>
</table>
<%= order_form.submit "Place Order" %>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment