Files
danbooru/app/views/comments/search.html.erb
2011-08-15 17:10:35 -04:00

16 lines
519 B
Plaintext

<div id="c-comments">
<div id="a-search">
<h1>Search Comments</h1>
<%= simple_form_for(@search) do |f| %>
<%= hidden_field_tag "group_by", "comment" %>
<%= f.input :body_matches, :label => "Body", :required => false %>
<%= f.input :creator_name_equals, :label => "User", :required => false %>
<%= f.input :post_tag_match, :label => "Tags", :required => false %>
<%= f.button :submit, "Search" %>
<% end %>
</div>
</div>
<%= render "comments/secondary_links" %>