forked from e621ng/e621ng
9 lines
497 B
Plaintext
9 lines
497 B
Plaintext
<%= form_search(path: bulk_update_requests_path) do |f| %>
|
|
<%= f.user :user, label: "Creator" %>
|
|
<%= f.user :approver %>
|
|
<%= f.input :title_matches, label: "Title" %>
|
|
<%= f.input :script_matches, label: "Script" %>
|
|
<%= f.input :status, label: "Status", collection: %w[pending approved rejected], include_blank: true %>
|
|
<%= f.input :order, collection: [%w[Status status_desc], %w[Last\ updated updated_at_desc], %w[Newest id_desc], %w[Oldest id_asc]], include_blank: false %>
|
|
<% end %>
|