2012-04-01 19 views
4

私は右揃えと桁区切り記号を使用したいと思います。誰かが私を正しい方向に向けることができますか?Rails ActiveAdminインデックスの書式設定番号

ActiveAdmin.register Thing do 
    index do 
    column :id 
    column :amount # need to make this fomatted nicely 

    default_actions 
end 
end 

答えて

2

を行く:あなたのCSSで、その後

column :amount, :class => 'text-right' do |thing| 
    number_to_currency thing.amount 
end 

.text-right { text-align: right;}