A calendar app for Django
Donate bitcoins to this project or make commits and get tips for it. If your commit is accepted by a project maintainer and there are bitcoins on its balance, you will get a tip!
BTC: 1DjMUVGUyJ5aJ5TxGx79K6VWagMSshhftg
pip install django-scheduler
- one-time and recurring events
- calendar exceptions (occurrences changed or cancelled)
- occurrences accessible through Event API and Period API
- relations of events to generic objects
- ready to use, nice user interface
- view day, week, month, three months and year
edit your settings.py
add to INSTALLED_APPS
:
'schedule'
add to TEMPLATE_CONTEXT_PROCESSORS
:
"django.core.context_processors.request"
This setting determines which day of the week your calendar begins on if your locale doesn't already set it. Default is 0, which is Sunday.
This setting controls the behavior of Views.get_next_url
. If set, all calendar modifications will redirect here (unless there is a next
set in the request.)
This setting controls the behavior of Period.classify_occurence
. If True, then occurences that have been cancelled will be displayed with a css class of canceled, otherwise they won't appear at all.
Defaults to False
deprecated
Should be replaced with CHECK_EVENT_PERM_FUNC
This setting controls the callable used to determine if a user has permission to edit an event or occurrence. The callable must take the object (event) and the user and return a boolean.
Default:
check_edit_permission(ob, user):
return user.is_authenticated()
If ob is None, then the function is checking for permission to add new events
This setting controls the callable used to determine if a user has permission to add, update or delete an events in specific calendar. The callable must take the object (calendar) and the user and return a boolean.
Default:
check_edit_permission(ob, user):
return user.is_authenticated()
This setting controls the callable that gets all events for calendar display. The callable must take the request and the calendar and return a QuerySet
of events. Modifying this setting allows you to pull events from multiple calendars or to filter events based on permissions
Default:
get_events(request, calendar):
return calendar.event_set.all()
This setting allows for custom base classes to be used on all models. Useful for adding fields, managers, or other elements.
Defaults to django.db.models.Model