Files
danbooru/app/views/comments/search.html.erb
2012-02-20 14:35:22 -05:00

21 lines
611 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 :for_user_name, :label => "User", :required => false %>
<%= f.input :post_tag_match, :label => "Tags", :required => false %>
<%= f.button :submit, "Search" %>
<% end %>
</div>
</div>
<%= render "comments/secondary_links" %>
<% content_for(:page_title) do %>
Search Comments - <%= Danbooru.config.app_name %>
<% end %>