Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jul 4th, 2012  |  syntax: None  |  size: 0.22 KB  |  hits: 7  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. ##Routes
  2. match "/stats(/:deck_id)" => "stats#index", :as => :stats
  3.  
  4. ##View
  5.  
  6. =form_tag(stats_path, :method => :post) do
  7.         =select_tag "deck_id", options_from_collection_for_select(@decks, "id", "name")
  8.         =submit_tag "Filter"