Rails form with a better URL
- by Sam
Wow, switching to REST is a different paradigm for sure and is mainly a headache right now.
view
<% form_tag (businesses_path, :method => "get") do %>
<%= select_tag :business_category_id, options_for_select(@business_categories.collect {|bc| [bc.name, bc.id ]}.insert(0, ["All Containers", 0]), …