Sha256: 392a643fa790495eb7ff7dcf4d0639159516ce56057d890821195dc82b5058f6
Contents?: true
Size: 972 Bytes
Versions: 125
Compression:
Stored size: 972 Bytes
Contents
- url = stock_watches_path if !stock_watch.persisted? - url = stock_watch_path( stock_watch ) if stock_watch.persisted? = form_for stock_watch, :url => url, :html => { :class => 'form-inline well' } do |f| .form-group = f.select :action, options_for_select( Ish::StockWatch::ACTIONS.map{|a|[a,a]}, :selected => stock_watch.action ) .form-group = f.select :profile, options_for_select( [[nil,nil]]+@profiles.map{|p|[p.email,p.id]}, :selected => stock_watch.profile ? stock_watch.profile.id : nil ) .form-group %label.control-label When = f.text_field :ticker, :class => 'form-control', :placeholder => 'ticker' .form-group %label.control-label Price = f.select :direction, options_for_select( Ish::StockWatch::DIRECTIONS.map{|d|[d,d]}, :selected => stock_watch.direction ) .form-group %label.control-label $ = f.number_field :price, :step => 0.01, :placeholder => "0.01" .form-group = f.submit ">", :class => %w(btn blue)
Version data entries
125 entries across 125 versions & 1 rubygems