eBooru/app/views/notes/_search.html.erb

9 lines
448 B
Plaintext

<%= form_search(path: notes_path) do |f| %>
<%= f.input :body_matches, label: "Body" %>
<%= f.user :creator, label: "Author" %>
<%= f.user :post_note_updater, label: "Post Note Updater" %>
<%= f.input :post_id, label: "Post #"%>
<%= f.input :post_tags_match, label: "Tags", autocomplete: "tag-query" %>
<%= f.input :is_active, label: "Status", collection: [["Active", "true"], ["Deleted", "false"]], :include_blank => true %>
<% end %>