Django Webix Sender

Version Build Codecov Maintainability Issues Py versions License

Documentation

The full documentation is at https://django-webix-sender.readthedocs.io.

Quickstart

Install Django Webix Sender:

$ pip install django-webix-sender

Add django-webix-sender to your INSTALLED_APPS

INSTALLED_APPS = [
    # ...
    'django_webix_sender',
    # ...
]

Add django-webix-sender URLconf to your project urls.py file

from django.conf.urls import url, include

urlpatterns = [
    # ...
    url(r'^django-webix-sender/', include('django_webix_sender.urls')),
    # ...
]

Warning

This package requires a project with django-webix setted up.

Warning

This package requires ‘django.contrib.humanize’ in INSTALLED_APPS

Running Tests

Does the code actually work?

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

Contributors

Here is a list of Django-Webix’s contributors.

Contributors