No project description provided
Project description
Use the Webix JavaScript UI library with Django
Documentation
The full documentation is at https://django-webix.readthedocs.io.
Quickstart
Create a new virtualenv:
$ python -m venv django-webix
$ source django-webix/bin/activate
Install Django Webix:
$ pip install django-webix
Extra packages for Django Webix:
$ pip install django-webix-sender
$ pip install django-dal
$ pip install django-filtersmerger
$ pip install django-webix-filter
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
Sponsors
Contributors
Here is a list of Django-Webix’s contributors.
Project details
Release history Release notifications | RSS feed
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-23.6.0.tar.gz
(5.6 MB
view details)
File details
Details for the file django-webix-23.6.0.tar.gz
.
File metadata
- Download URL: django-webix-23.6.0.tar.gz
- Upload date:
- Size: 5.6 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 24426bed7bdcbaaeb9297ead53670f73c582f0835451f96744ab5cdc411f54bb |
|
MD5 | d81dc4bdb73050e4ded5ed7d9a957e20 |
|
BLAKE2b-256 | 348ffe33bbb6da19a7115e940c5c7b4998b7d341fa7e456b36ea9ef26a7f4cad |