llazzaro / django-scheduler

A calendaring app for Django.
BSD 3-Clause "New" or "Revised" License
1.29k stars 392 forks source link

Change the first day of week #414

Open frague59 opened 6 years ago

frague59 commented 6 years ago

Hi,

For now, the first day of week is Sunday, but here in France (and in other countries in Europe), the first day of week is mainly Monday.

Is there a way to change the first day of week in django-scheduler ?

Thanks for this great project !

mikekeda commented 6 years ago

it's configurable https://fullcalendar.io/docs/firstDay

Example:

$('#calendar').fullCalendar({
  events: '/schedule/api/occurrences?calendar_slug={{ slug }}&timezone={{ my_timezone }}',
  ignoreTimezone: false,
  timeFormat: 'H:mm',
  firstDay: 1
});