From d730bd5882aac4c0f0670e50cb29c4b092a0cd1b Mon Sep 17 00:00:00 2001 From: evazion Date: Wed, 21 Sep 2022 22:58:00 -0500 Subject: [PATCH] uploads: remove unused search form template. --- app/views/uploads/_search.html.erb | 8 -------- 1 file changed, 8 deletions(-) delete mode 100644 app/views/uploads/_search.html.erb diff --git a/app/views/uploads/_search.html.erb b/app/views/uploads/_search.html.erb deleted file mode 100644 index e90f300a4..000000000 --- a/app/views/uploads/_search.html.erb +++ /dev/null @@ -1,8 +0,0 @@ -<%= search_form_for(uploads_path) do |f| %> - <%= f.input :uploader_name, label: "Uploader", input_html: { value: params[:search][:uploader_name], data: { autocomplete: "user" } } %> - <%= f.input :post_tags_match, label: "Post Tags", input_html: { value: params[:search][:post_tags_match] } %> - <%= f.input :source_matches, label: "Source", input_html: { value: params[:search][:source_matches] } %> - <%= f.input :status, collection: [%w[Completed completed], %w[Processing processing], %w[Pending pending], %w[Duplicate *duplicate*], %w[Error error*]], include_blank: true, selected: params[:search][:status] %> - - <%= f.submit "Search" %> -<% end %>