Skip to main content

A calendaring app for Django.

Project description

Django Scheduler

Gitter Code Health Documentation Status

A calendar app for Django

Information

Installation

pip install django-scheduler

Edit your settings.py

Add to INSTALLED_APPS:

'schedule',

Add to TEMPLATE_CONTEXT_PROCESSORS:

"django.template.context_processors.request"

Static assets

Django Scheduler relies on jQuery and Bootstrap to provide its user interface. If you don't need help with adding these to your Django project, you can skip the next step where we will show you how to add them to your Django project.

npm install -g bower
pip install django-bower

edit your settings.py

add to INSTALLED_APPS:

'djangobower',

Add staticfinder to STATICFILES_FINDERS:

'djangobower.finders.BowerFinder',

Specify the path to the components root (you need to use an absolute path):

BOWER_COMPONENTS_ROOT = '/PROJECT_ROOT/components/'

Add the following Bower dependencies for scheduler:

BOWER_INSTALLED_APPS = (
    'jquery',
    'jquery-ui',
    'bootstrap'
)

Last step, install bower dependencies with:

./manage.py bower install

Remember to execute "python manage.py collectstatic"

Features

  • 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

Configuration

Full Calendar examples

Full calendar

Monthly view (static)

Daily view (static)

Metrics

Throughput Graph

Optional Settings

FIRST_DAY_OF_WEEK

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.

OCCURRENCE_CANCEL_REDIRECT

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.)

SHOW_CANCELLED_OCCURRENCES

This setting controls the behavior of Period.classify_occurrence. If True, then occurrences that have been cancelled will be displayed with a css class of canceled, otherwise they won't appear at all.

Defaults to False

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

CHECK_CALENDAR_PERM_FUNC

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

GET_EVENTS_FUNC

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()

SCHEDULER_PREVNEXT_LIMIT_SECONDS

This settings allows to set the upper and lower limit in calendars navigation. Value is in seconds.

Default (two years): 62208000

Contributing

Tests

To run tests on all supported versions of Django and Python, use tox:

$ tox

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-scheduler-0.9.0.tar.gz (72.3 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

django_scheduler-0.9.0-py3-none-any.whl (98.3 kB view details)

Uploaded Python 3

django_scheduler-0.9.0-py2-none-any.whl (98.3 kB view details)

Uploaded Python 2

File details

Details for the file django-scheduler-0.9.0.tar.gz.

File metadata

  • Download URL: django-scheduler-0.9.0.tar.gz
  • Upload date:
  • Size: 72.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.2 pkginfo/1.4.2 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.28.1 CPython/3.7.4

File hashes

Hashes for django-scheduler-0.9.0.tar.gz
Algorithm Hash digest
SHA256 cca0f78db4c751443234269942a70a0543f26bae4bd9844df16c7f75ab8f6bde
MD5 4992cccf5d65c36daf6249b47c93f24c
BLAKE2b-256 aee8a5df99c990e16256c81eee0b60a59103097f9a2436e75a7dec2fbba81131

See more details on using hashes here.

File details

Details for the file django_scheduler-0.9.0-py3-none-any.whl.

File metadata

  • Download URL: django_scheduler-0.9.0-py3-none-any.whl
  • Upload date:
  • Size: 98.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.2 pkginfo/1.4.2 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.28.1 CPython/3.7.4

File hashes

Hashes for django_scheduler-0.9.0-py3-none-any.whl
Algorithm Hash digest
SHA256 77cb9813c804b5e8aa14538fff497ba38367ce39583e446fd55398ef3e298a60
MD5 934980464503203058abe6511e98d03c
BLAKE2b-256 10dc8c21b4e76ccd9a2436790074add40dbde7f5182f4049ead592885fd1cfee

See more details on using hashes here.

File details

Details for the file django_scheduler-0.9.0-py2-none-any.whl.

File metadata

  • Download URL: django_scheduler-0.9.0-py2-none-any.whl
  • Upload date:
  • Size: 98.3 kB
  • Tags: Python 2
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.34.0 CPython/2.7.16

File hashes

Hashes for django_scheduler-0.9.0-py2-none-any.whl
Algorithm Hash digest
SHA256 8a3fc3c0d3511aba6e4f15e061edc3c91a6cc5723330eb0675ddcaeaae9ec82e
MD5 f09be3f91eda418e3d8dcae3287c7afa
BLAKE2b-256 f5eb3d8e8d68d7b6c10d6f306092561fa054d2280b824006fec4815aede7bc22

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page