fix search forms
This commit is contained in:
@@ -2,12 +2,12 @@
|
||||
<div id="a-search">
|
||||
<h1>Search Comments</h1>
|
||||
|
||||
<%= form_tag(comments_path, :method => :get) do |f| %>
|
||||
<%= form_tag(comments_path, :method => :get, :class => "simple_form") do %>
|
||||
<%= hidden_field_tag "group_by", "comment" %>
|
||||
|
||||
<%= search_field :body_matches, :label => "Body" %>
|
||||
<%= search_field :creator_name, :label => "User" %>
|
||||
<%= search_field :post_tags_match, :label => "Tags" %>
|
||||
<%= search_field "body_matches", :label => "Body" %>
|
||||
<%= search_field "creator_name", :label => "User" %>
|
||||
<%= search_field "post_tags_match", :label => "Tags" %>
|
||||
<%= submit_tag "Search" %>
|
||||
<% end %>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user