I specified config.time_zone in my Rails app, but the retrieved times in form fields still render as the UTC (which creates problems on updates). Shouldn\'t this be convert
Just use this:
<%= f.label :time_start %> <%= f.datetime_select :time_start, :class => "datetimefield" %>
I create a little app for this and it's works.