fix search forms

This commit is contained in:
albert
2013-02-18 15:50:57 -05:00
parent 3399ff04fb
commit b109d44daf
4 changed files with 14 additions and 14 deletions

View File

@@ -2,9 +2,9 @@
<div id="a-search">
<h1>Search Forum</h1>
<%= form_tag(forum_topics_path, :method => :get, :class => "simple_form") do %>
<%= search_field :topic_title_matches, :label => "Title" %>
<%= search_field :body_matches, :label => "Body" %>
<%= search_field :creator_name, :label => "Author" %>
<%= search_field "topic_title_matches", :label => "Title" %>
<%= search_field "body_matches", :label => "Body" %>
<%= search_field "creator_name", :label => "Author" %>
<%= submit_tag "Search" %>
<% end %>
</div>