├── .gitignore ├── LICENSE ├── README.md ├── demo ├── demo │ ├── __init__.py │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── manage.py └── posts │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ ├── 0001_initial.py │ └── __init__.py │ ├── models.py │ └── views.py ├── django_editorjs ├── __init__.py ├── fields.py ├── static │ ├── django-editorjs.css │ └── django-editorjs.js ├── templates │ └── editorjs.html └── widgets.py ├── poetry.lock ├── poetry.toml └── pyproject.toml /.gitignore: -------------------------------------------------------------------------------- 1 | /.DS_Store 2 | /.vscode 3 | 4 | /.pyenv 5 | /dist 6 | __pycache__ 7 | db.sqlite3 8 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLZH/django-editorjs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLZH/django-editorjs/HEAD/README.md -------------------------------------------------------------------------------- /demo/demo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/demo/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLZH/django-editorjs/HEAD/demo/demo/asgi.py -------------------------------------------------------------------------------- /demo/demo/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLZH/django-editorjs/HEAD/demo/demo/settings.py -------------------------------------------------------------------------------- /demo/demo/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLZH/django-editorjs/HEAD/demo/demo/urls.py -------------------------------------------------------------------------------- /demo/demo/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLZH/django-editorjs/HEAD/demo/demo/wsgi.py -------------------------------------------------------------------------------- /demo/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLZH/django-editorjs/HEAD/demo/manage.py -------------------------------------------------------------------------------- /demo/posts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/posts/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLZH/django-editorjs/HEAD/demo/posts/admin.py -------------------------------------------------------------------------------- /demo/posts/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLZH/django-editorjs/HEAD/demo/posts/apps.py -------------------------------------------------------------------------------- /demo/posts/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLZH/django-editorjs/HEAD/demo/posts/migrations/0001_initial.py -------------------------------------------------------------------------------- /demo/posts/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/posts/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLZH/django-editorjs/HEAD/demo/posts/models.py -------------------------------------------------------------------------------- /demo/posts/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /django_editorjs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLZH/django-editorjs/HEAD/django_editorjs/__init__.py -------------------------------------------------------------------------------- /django_editorjs/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLZH/django-editorjs/HEAD/django_editorjs/fields.py -------------------------------------------------------------------------------- /django_editorjs/static/django-editorjs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLZH/django-editorjs/HEAD/django_editorjs/static/django-editorjs.css -------------------------------------------------------------------------------- /django_editorjs/static/django-editorjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLZH/django-editorjs/HEAD/django_editorjs/static/django-editorjs.js -------------------------------------------------------------------------------- /django_editorjs/templates/editorjs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLZH/django-editorjs/HEAD/django_editorjs/templates/editorjs.html -------------------------------------------------------------------------------- /django_editorjs/widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLZH/django-editorjs/HEAD/django_editorjs/widgets.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLZH/django-editorjs/HEAD/poetry.lock -------------------------------------------------------------------------------- /poetry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLZH/django-editorjs/HEAD/poetry.toml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLZH/django-editorjs/HEAD/pyproject.toml --------------------------------------------------------------------------------