Skip to content

InfoAgeTech/django-recurrences

Repository files navigation

NOTE: This is not stable yet and will likely change! Please don't use in production until the 1.0 release.

Travis CI Code Coverage Version MIT License | Documentation

django-recurrences

django-recurrences is a python recurrence module written for django.

Intallation

Install from pypi via pip:

pip install django-recurrences

Dependencies

TODO

Recurrence Form Widget

This app contains default styling and javascript functionality for you to use if you choose. It's not included by default so if you use a asset library, like django-pipeline, you can add it into the pipline settings.

One way to leverage the css and js for the widget is to add it to your pipeline settings file:

 PIPELINE_CSS = {
   'standard': {
        'source_filenames': (
            'django_recurrences/less/recurrence_widget.less',
             ... your other less or css ...
        ),
     'output_filename': 'css/your-file-name-min.css',
   }
}

PIPELINE_JS = {
    'standard': {
        'source_filenames': (
            'django_recurrences/js/recurrence_widget.js',
            ... your other js ...
        ),
        'output_filename': 'js/your-file-name-min.js',
    }
}

Tests

From the test directory where the manage.py file is, run:

python manage.py test

About

This is not stable yet and will likely change! Please don't use in production until the 1.0 release.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published