b3ify 'sort by' dropdown on crops page

This commit is contained in:
Skud
2014-08-30 18:05:11 +10:00
parent 8a5d1f2e5e
commit e7d9ebe37a

View File

@@ -5,9 +5,10 @@
View any crop page to see which of our members have planted it and find
information on how to grow it yourself.
= form_tag(crops_path, :method => :get, :class => 'form-inline') do
= label_tag :sort, "Sort by:", :class => 'control-label'
= select_tag "sort", options_for_select({"Popularity" => 'popular', "Alphabetical" => 'alpha'}, @sort || 'popular')
= form_tag(crops_path, :method => :get, :class => 'form-inline', :role => 'form') do
.form-group
= label_tag :sort, "Sort by:", :class => 'sr-only'
= select_tag "sort", options_for_select({"Sort by popularity" => 'popular', "Sort alphabetically" => 'alpha'}, @sort || 'popular'), :class => 'form-control'
= submit_tag "Show", :class => 'btn btn-primary'
%div.pagination