django-scheduler icon indicating copy to clipboard operation
django-scheduler copied to clipboard

Change the first day of week

Open frague59 opened this issue 7 years ago • 1 comments

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 !

frague59 avatar Mar 01 '18 12:03 frague59

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
});

mikekeda avatar Mar 20 '18 17:03 mikekeda