├── .gitignore ├── LICENSE ├── README.md ├── README.rst ├── django_jsoneditor ├── __init__.py ├── settings.py ├── settings_testapp1.py ├── settings_testapp2.py ├── urls.py └── wsgi.py ├── jsoneditor ├── __init__.py ├── fields │ ├── __init__.py │ ├── django3_jsonfield.py │ ├── django_extensions_jsonfield.py │ ├── django_json_field.py │ ├── django_jsonfield.py │ ├── jsonfield.py │ └── postgres_jsonfield.py ├── forms.py └── static │ ├── django-jsoneditor │ ├── ace_options.js │ ├── django-jsoneditor.css │ ├── django-jsoneditor.js │ └── init.js │ └── jsoneditor │ ├── img │ ├── jsoneditor-icons.png │ └── jsoneditor-icons.svg │ ├── jsoneditor.css │ └── jsoneditor.js ├── manage.py ├── setup.cfg ├── setup.py ├── testapp ├── __init__.py ├── admin.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── tests.py └── views.py └── testapp2 ├── __init__.py ├── admin.py ├── migrations ├── 0001_initial.py └── __init__.py ├── models.py ├── tests.py └── views.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnseva/django-jsoneditor/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnseva/django-jsoneditor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnseva/django-jsoneditor/HEAD/README.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnseva/django-jsoneditor/HEAD/README.rst -------------------------------------------------------------------------------- /django_jsoneditor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_jsoneditor/settings.py: -------------------------------------------------------------------------------- 1 | settings_testapp1.py -------------------------------------------------------------------------------- /django_jsoneditor/settings_testapp1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnseva/django-jsoneditor/HEAD/django_jsoneditor/settings_testapp1.py -------------------------------------------------------------------------------- /django_jsoneditor/settings_testapp2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnseva/django-jsoneditor/HEAD/django_jsoneditor/settings_testapp2.py -------------------------------------------------------------------------------- /django_jsoneditor/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnseva/django-jsoneditor/HEAD/django_jsoneditor/urls.py -------------------------------------------------------------------------------- /django_jsoneditor/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnseva/django-jsoneditor/HEAD/django_jsoneditor/wsgi.py -------------------------------------------------------------------------------- /jsoneditor/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.2.4" 2 | -------------------------------------------------------------------------------- /jsoneditor/fields/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jsoneditor/fields/django3_jsonfield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnseva/django-jsoneditor/HEAD/jsoneditor/fields/django3_jsonfield.py -------------------------------------------------------------------------------- /jsoneditor/fields/django_extensions_jsonfield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnseva/django-jsoneditor/HEAD/jsoneditor/fields/django_extensions_jsonfield.py -------------------------------------------------------------------------------- /jsoneditor/fields/django_json_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnseva/django-jsoneditor/HEAD/jsoneditor/fields/django_json_field.py -------------------------------------------------------------------------------- /jsoneditor/fields/django_jsonfield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnseva/django-jsoneditor/HEAD/jsoneditor/fields/django_jsonfield.py -------------------------------------------------------------------------------- /jsoneditor/fields/jsonfield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnseva/django-jsoneditor/HEAD/jsoneditor/fields/jsonfield.py -------------------------------------------------------------------------------- /jsoneditor/fields/postgres_jsonfield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnseva/django-jsoneditor/HEAD/jsoneditor/fields/postgres_jsonfield.py -------------------------------------------------------------------------------- /jsoneditor/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnseva/django-jsoneditor/HEAD/jsoneditor/forms.py -------------------------------------------------------------------------------- /jsoneditor/static/django-jsoneditor/ace_options.js: -------------------------------------------------------------------------------- 1 | django_jsoneditor_ace_options = { 2 | }; -------------------------------------------------------------------------------- /jsoneditor/static/django-jsoneditor/django-jsoneditor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnseva/django-jsoneditor/HEAD/jsoneditor/static/django-jsoneditor/django-jsoneditor.css -------------------------------------------------------------------------------- /jsoneditor/static/django-jsoneditor/django-jsoneditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnseva/django-jsoneditor/HEAD/jsoneditor/static/django-jsoneditor/django-jsoneditor.js -------------------------------------------------------------------------------- /jsoneditor/static/django-jsoneditor/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnseva/django-jsoneditor/HEAD/jsoneditor/static/django-jsoneditor/init.js -------------------------------------------------------------------------------- /jsoneditor/static/jsoneditor/img/jsoneditor-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnseva/django-jsoneditor/HEAD/jsoneditor/static/jsoneditor/img/jsoneditor-icons.png -------------------------------------------------------------------------------- /jsoneditor/static/jsoneditor/img/jsoneditor-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnseva/django-jsoneditor/HEAD/jsoneditor/static/jsoneditor/img/jsoneditor-icons.svg -------------------------------------------------------------------------------- /jsoneditor/static/jsoneditor/jsoneditor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnseva/django-jsoneditor/HEAD/jsoneditor/static/jsoneditor/jsoneditor.css -------------------------------------------------------------------------------- /jsoneditor/static/jsoneditor/jsoneditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnseva/django-jsoneditor/HEAD/jsoneditor/static/jsoneditor/jsoneditor.js -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnseva/django-jsoneditor/HEAD/manage.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnseva/django-jsoneditor/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnseva/django-jsoneditor/HEAD/setup.py -------------------------------------------------------------------------------- /testapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testapp/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnseva/django-jsoneditor/HEAD/testapp/admin.py -------------------------------------------------------------------------------- /testapp/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnseva/django-jsoneditor/HEAD/testapp/migrations/0001_initial.py -------------------------------------------------------------------------------- /testapp/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnseva/django-jsoneditor/HEAD/testapp/models.py -------------------------------------------------------------------------------- /testapp/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnseva/django-jsoneditor/HEAD/testapp/tests.py -------------------------------------------------------------------------------- /testapp/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /testapp2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testapp2/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnseva/django-jsoneditor/HEAD/testapp2/admin.py -------------------------------------------------------------------------------- /testapp2/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnseva/django-jsoneditor/HEAD/testapp2/migrations/0001_initial.py -------------------------------------------------------------------------------- /testapp2/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testapp2/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnseva/django-jsoneditor/HEAD/testapp2/models.py -------------------------------------------------------------------------------- /testapp2/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnseva/django-jsoneditor/HEAD/testapp2/tests.py -------------------------------------------------------------------------------- /testapp2/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | --------------------------------------------------------------------------------