Sha256: 33bd4afb0d852eff8420047b644d5b04540d159f474ea2d7f44e4070e5d425f3
Contents?: true
Size: 487 Bytes
Versions: 11
Compression:
Stored size: 487 Bytes
Contents
<% @taxons = @taxon && @taxon.parent ? @taxon.parent.children : Spree::Taxon.roots %> <%= form_tag products_url, :method => :get do %> <%= select_tag :taxon, options_for_select([[t(:all_departments), '']] + @taxons.map {|t| [t.name, t.id]}, @taxon ? @taxon.id : params[:taxon]) %> <%= search_field_tag :keywords, params[:keywords], :placeholder => t(:search) %> <%= submit_tag t(:search), :name => nil %> <% end %>
Version data entries
11 entries across 11 versions & 1 rubygems