jeudi, juin 22, 2006

[Rails] Liste de sélection

Dans la vue:
<% 
options = Order::PAYMENT_TYPES
select('order', 'pay_type', options)
%>
  • order = objet / table
  • pay_type = attribut / colonne
Dans app/models/Order.rb:
PAYMENT_TYPES = [['check', 'check'], ['Credit card', 'cc'], ['Master Card', 'mc']].freeze

Aucun commentaire: