Requirements:
- Python >= 3.4
- Django >= 2.0
Install using pip:
$ pip install django-jsonform
We also upload pre-built packages on Github in case pip or PyPI server isn't working.
Update your project's settings:
# settings.py
INSTALLED_APPS = [
# ...
'django_jsonform'
]
Upgrading notes
When upgrading from an older version of this library, please ensure that your browser is loading the latest static JavaScript files that come with this library:
- In the development environment, clear the browser cache.
- In the production environment, you must run the
collectstatic
command to update the static files.
Next, go to :doc:`quickstart` page for basic usage instructions.