Skip to content

Instantly share code, notes, and snippets.

@namtsui
Created December 10, 2010 06:32
Show Gist options
  • Save namtsui/735873 to your computer and use it in GitHub Desktop.
Save namtsui/735873 to your computer and use it in GitHub Desktop.
Number of Ratings
<%= select_tag "num_ratings_weight",
options_for_select([["Negligible", 1],
["Trivial", 2],
["Relevant", 3],
["Important", 4],
["Crucial", 5]],
[ @num_ratings_weight ]), {:multiple => false} %>
Average Ratings
<%= select_tag "avg_rating_weight",
options_for_select([["Negligible", 1],
["Trivial", 2],
["Relevant", 3],
["Important", 4],
["Crucial", 5]],
[ 3 ]), {:multiple => false} %>
Cheapness
<%= select_tag "cheapness_weight",
options_for_select([["Negligible", 1],
["Trivial", 2],
["Relevant", 3],
["Important", 4],
["Crucial", 5]],
[ 3 ]), {:multiple => false} %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment