I am learning to use Thoughtbot’s Administrate engine as an admin dashboard generator.
In order to customize the date/time picker that the library uses within forms by default, I generated the corresponding partial, which contained this line:
<%= f.text_field field.attribute, data: { type: 'datetime'} %>
By editing this, I have been able to tweak the date format:
<%= f.text_field field.attribute, data: { type: 'datetime', 'date-format': "DD-MM-YYYY HH:mm" } %>
However, I seem unable to find any documentation on how to change other settings, such as the locale, including the first day of week.
I was looking at the source code and it seems that it doesn't support to change the first day of week, here are the options that it supports
and for locales it seems to accept them, and you can use one of those from here