Skip to content

atb00ker/django-jsonschema-widget

 
 

Repository files navigation

django-jsonschema-widget

https://travis-ci.org/openwisp/django-jsonschema-widget.svg?branch=master

Configuration widget for embedded device.

Documentation

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

Quickstart

Install django-jsonschema-widget:

pip install django-jsonschema-widget

Add it to your INSTALLED_APPS:

INSTALLED_APPS = (
    ...
    'django_jsonschema_widget.apps.JsonschemaWidgetConfig',
    ...
)

Add django-jsonschema-widget's URL patterns:

from django_jsonschema_widget import urls as jsonschema_widget_urls


urlpatterns = [
    ...
    url(r'^', include(jsonschema_widget_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:

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 96.8%
  • CSS 2.6%
  • Other 0.6%