forked from e621ng/e621ng
10 lines
438 B
Plaintext
10 lines
438 B
Plaintext
<%= form_search(path: user_feedbacks_path) do |f| %>
|
|
<%= f.user :user %>
|
|
<%= f.user :creator %>
|
|
<%= f.input :body_matches, label: "Message" %>
|
|
<% if CurrentUser.is_staff? %>
|
|
<%= f.input :deleted, label: "Deleted?", collection: [%w[Excluded excluded], %w[Included included], %w[Only only]], include_blank: true %>
|
|
<% end %>
|
|
<%= f.input :category, collection: %w[positive negative neutral], include_blank: true %>
|
|
<% end %>
|