Format date in ActiveAdmin form

1.3k Views Asked by At

I got a list of trips which I display in ActiveAdmin, the index uses a formats.fr.yml and the date is displayed with the right format. However, when I modify a trip, in the form, ActiveAdmin doesn't use formats.fr.yml anymore. Here is the line in the form :

f.input :start_date, as: :date_time_picker

I tried something like this :

f.input :start_date, as: :date_time_picker, :value => :start_date.strftime('%d-%m-%Y %I:%M')

But it doesn't work. By the way, when I change the date with the datepicker, it changes the date to the right format (but because of some js).

Thanks for your help.

1

There are 1 best solutions below

0
On

Try this one,

f.input :start_date, :value => :start_date.try(:strftime,'%y-%m-%d %i:%m')

Where try will prevent you from getting exceptions, when date is nil.