<%= label_tag :q_variant_id_eq, Spree::Variant.model_name.human %>
<%= f.select :variant_id_eq,
@product.variants_including_master.map { |v| [v.descriptive_name, v.id] },
{include_blank: true},
class: "custom-select fullwidth" %>
<%= label_tag :q_currency_eq, Spree::Price.human_attribute_name(:currency) %>
<%= f.select :currency_eq,
@prices.map(&:currency).uniq,
{include_blank: true},
class: "custom-select fullwidth" %>
<%= label_tag :q_country_iso_eq, Spree::Price.human_attribute_name(:country) %>
<%= f.select :country_iso_eq,
@prices.map(&:country).compact.uniq.map { |c| [c.name, c.iso]},
{include_blank: true},
class: "custom-select fullwidth" %>
<%= label_tag :q_amount_gt, t(".amount_greater_than") %>
<%= f.text_field :amount_gt %>
<%= label_tag :q_amount_lt, t(".amount_less_than") %>
<%= f.text_field :amount_lt %>