Merge branch 'develop' into 'master'
Fernando Ribeiro authored
Fix: import rest status

See merge request !2
23b2ad1b

Django Courses Notifications

https://travis-ci.org/hacklabr/django-courses-notifications.svg?branch=master

Notifications support for the Django Courses app

Documentation

The full documentation is at https://django-courses-notifications.readthedocs.io.

Quickstart

Install Django Courses Notifications:

pip install django-courses-notifications

Add it to your INSTALLED_APPS:

INSTALLED_APPS = (
    ...
    'courses_notifications.apps.DjangoCoursesNotificationsConfig',
    ...
)

Add Django Courses Notifications's URL patterns:

from courses_notifications import urls as courses_notifications_urls


urlpatterns = [
    ...
    url(r'^', include(courses_notifications_urls)),
    ...
]

Features

  • TODO

Running Tests

Does the code actually work?

source <YOURVIRTUALENV>/bin/activate
(myenv) $ pip install tox
(myenv) $ tox

Credits

Tools used in rendering this package: