Sha256: ad71762f35861c2307951cc1705abccea7a034e70211df037d89ad5f40efcb42
Contents?: true
Size: 473 Bytes
Versions: 1
Compression:
Stored size: 473 Bytes
Contents
<h1>Inquiry</h1> <%= form_for @inquiry do |f| %> <ul> <% @inquiry.products.each do |product| %> <li> <%= f.hidden_field 'product_ids', {value: product.id, multiple: true} %> <%= product.name %> </li> <% end %> </ul> <div class="fields"> <%= f.label :name %> <%= f.text_field :name %> </div> <div class="fields"> <%= f.label :email %> <%= f.text_field :email %> </div> <%= f.submit 'Submit' %> <% end %>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
daimon-exhibition-0.1.0 | spec/dummy/app/views/inquiries/new.html.erb |