Skip to main content

No project description provided

Project description

Version Build Codecov Issues Py versions License

Use the Webix JavaScript UI library with Django

Documentation

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

Quickstart

Install Django Webix:

$ pip install django-webix

Add django-webix to your INSTALLED_APPS

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

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

from django.conf.urls import url, include

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

Add internationalization to TEMPLATES

TEMPLATES = [
    {
        # ...
        'OPTIONS': {
            'context_processors': [
                # ...
                'django.template.context_processors.i18n',
            ],
        },
    },
]

Include webix static files folder in your django staticfiles folder as webix and add static configuration

STATICFILES_FINDERS = (
    'django.contrib.staticfiles.finders.FileSystemFinder',
    'django.contrib.staticfiles.finders.AppDirectoriesFinder',
)
STATICFILES_DIRS = (
    os.path.join(BASE_DIR, 'staticfiles'),
)
STATIC_URL = '/static/'

Running Tests

Does the code actually work?

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

Download files

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

Source Distribution

django-webix-0.2.1.tar.gz (1.5 MB view hashes)

Uploaded Source

Supported by

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