django-scheduler
django-scheduler copied to clipboard
Change the first day of week
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 !
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
});