Skip to content

Instantly share code, notes, and snippets.

@dylanz
Created April 11, 2011 18:01
Show Gist options
  • Save dylanz/913944 to your computer and use it in GitHub Desktop.
Save dylanz/913944 to your computer and use it in GitHub Desktop.
<% form_for @search do |f| %>
<ul>
<li>
<%= f.label :name_like, "Name" %>
<%= f.text_field :name_like %>
</li>
<li>
<%= f.label :category_id_equals, "Category" %>
<%= f.collection_select :category_id_equals, Category.all, :id, :name, :include_blank => true %>
</li>
<li>
<%= f.submit "Search" %>
</li>
</ul>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment