app/views/iro/stocks/_form.haml in iron_warbler-2.0.7.26 vs app/views/iro/stocks/_form.haml in iron_warbler-2.0.7.27

- old
+ new

@@ -5,17 +5,18 @@ .field - if stock.new_record? %label New - else + %label status = f.select :status, options_for_select([ Iro::Stock::STATUS_ACTIVE, Iro::Stock::STATUS_INACTIVE ], selected: stock.status) .field = f.label :ticker = f.text_field :ticker - .field - %label Last - = f.number_field :last, placeholder: '80.0', step: 0.01 + -# .field + -# %label Last + -# = f.number_field :last, placeholder: '80.0', step: 0.01 .field %label options price increment = f.number_field :options_price_increment, step: 0.5