I have the following simple_form input (HAML):
= congress_detail_form.input :stand_setup_time, as: :time
The as: :time part may be redundant as the database column type is TIME, which I think simple_form detects.
It defaults to the current time (it shows two selects, one for the hour, the other for the minute). I have been unable to set a default of 00:00 using default: or value:. Is this even possible?
I've been unable to find where in the simple_form codebase this default is set. Any help would be appreciated.
I've also found no timepicker that works with simple_form.