├── .editorconfig ├── .github └── workflows │ └── tests.yml ├── .gitignore ├── .mailmap ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── AUTHORS ├── CHANGELOG.rst ├── CONTRIBUTING.rst ├── LICENSE ├── README.rst ├── biome.json ├── content_editor ├── __init__.py ├── admin.py ├── contents.py ├── locale │ ├── ca │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── cs │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── de │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── es │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── fr │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── hr │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── it │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── nb │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── nl │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── pl │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── pt │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ ├── django.po │ │ │ ├── djangojs.mo │ │ │ └── djangojs.po │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ro │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ru │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── tr │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ └── zh_CN │ │ └── LC_MESSAGES │ │ ├── django.mo │ │ └── django.po ├── models.py └── static │ └── content_editor │ ├── content_editor.css │ ├── content_editor.js │ ├── django_admin_fixes.css │ ├── material-icons.css │ ├── material-icons.woff2 │ ├── save_shortcut.js │ ├── tabbed_fieldsets.css │ └── tabbed_fieldsets.js ├── docs ├── Makefile ├── _static │ └── django-content-editor.png ├── admin-classes.rst ├── changelog.rst ├── conf.py ├── contents.rst ├── design-decisions.rst ├── index.rst ├── installation.rst ├── make.bat └── quickstart.rst ├── pyproject.toml ├── tests ├── .gitignore ├── README.md ├── README_integration_tests.md ├── conftest.py ├── cov.sh ├── manage.py ├── requirements.txt └── testapp │ ├── __init__.py │ ├── admin.py │ ├── models.py │ ├── settings.py │ ├── templates │ ├── 404.html │ ├── base.html │ └── testapp │ │ ├── article_detail.html │ │ └── page_detail.html │ ├── test_checks.py │ ├── test_content_editor.py │ ├── test_contents.py │ ├── test_playwright.py │ ├── test_playwright_helpers.py │ ├── urls.py │ └── views.py └── tox.ini /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/.mailmap -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/README.rst -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/biome.json -------------------------------------------------------------------------------- /content_editor/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "8.0.3" 2 | -------------------------------------------------------------------------------- /content_editor/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/content_editor/admin.py -------------------------------------------------------------------------------- /content_editor/contents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/content_editor/contents.py -------------------------------------------------------------------------------- /content_editor/locale/ca/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/content_editor/locale/ca/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /content_editor/locale/ca/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/content_editor/locale/ca/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /content_editor/locale/cs/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/content_editor/locale/cs/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /content_editor/locale/cs/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/content_editor/locale/cs/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /content_editor/locale/de/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/content_editor/locale/de/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /content_editor/locale/de/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/content_editor/locale/de/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /content_editor/locale/es/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/content_editor/locale/es/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /content_editor/locale/es/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/content_editor/locale/es/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /content_editor/locale/fr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/content_editor/locale/fr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /content_editor/locale/fr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/content_editor/locale/fr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /content_editor/locale/hr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/content_editor/locale/hr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /content_editor/locale/hr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/content_editor/locale/hr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /content_editor/locale/it/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/content_editor/locale/it/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /content_editor/locale/it/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/content_editor/locale/it/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /content_editor/locale/nb/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/content_editor/locale/nb/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /content_editor/locale/nb/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/content_editor/locale/nb/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /content_editor/locale/nl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/content_editor/locale/nl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /content_editor/locale/nl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/content_editor/locale/nl/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /content_editor/locale/pl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/content_editor/locale/pl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /content_editor/locale/pl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/content_editor/locale/pl/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /content_editor/locale/pt/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/content_editor/locale/pt/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /content_editor/locale/pt/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/content_editor/locale/pt/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /content_editor/locale/pt/LC_MESSAGES/djangojs.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/content_editor/locale/pt/LC_MESSAGES/djangojs.mo -------------------------------------------------------------------------------- /content_editor/locale/pt/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/content_editor/locale/pt/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /content_editor/locale/pt_BR/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/content_editor/locale/pt_BR/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /content_editor/locale/pt_BR/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/content_editor/locale/pt_BR/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /content_editor/locale/ro/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/content_editor/locale/ro/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /content_editor/locale/ro/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/content_editor/locale/ro/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /content_editor/locale/ru/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/content_editor/locale/ru/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /content_editor/locale/ru/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/content_editor/locale/ru/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /content_editor/locale/tr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/content_editor/locale/tr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /content_editor/locale/tr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/content_editor/locale/tr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /content_editor/locale/zh_CN/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/content_editor/locale/zh_CN/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /content_editor/locale/zh_CN/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/content_editor/locale/zh_CN/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /content_editor/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/content_editor/models.py -------------------------------------------------------------------------------- /content_editor/static/content_editor/content_editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/content_editor/static/content_editor/content_editor.css -------------------------------------------------------------------------------- /content_editor/static/content_editor/content_editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/content_editor/static/content_editor/content_editor.js -------------------------------------------------------------------------------- /content_editor/static/content_editor/django_admin_fixes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/content_editor/static/content_editor/django_admin_fixes.css -------------------------------------------------------------------------------- /content_editor/static/content_editor/material-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/content_editor/static/content_editor/material-icons.css -------------------------------------------------------------------------------- /content_editor/static/content_editor/material-icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/content_editor/static/content_editor/material-icons.woff2 -------------------------------------------------------------------------------- /content_editor/static/content_editor/save_shortcut.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/content_editor/static/content_editor/save_shortcut.js -------------------------------------------------------------------------------- /content_editor/static/content_editor/tabbed_fieldsets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/content_editor/static/content_editor/tabbed_fieldsets.css -------------------------------------------------------------------------------- /content_editor/static/content_editor/tabbed_fieldsets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/content_editor/static/content_editor/tabbed_fieldsets.js -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/django-content-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/docs/_static/django-content-editor.png -------------------------------------------------------------------------------- /docs/admin-classes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/docs/admin-classes.rst -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/docs/changelog.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contents.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/docs/contents.rst -------------------------------------------------------------------------------- /docs/design-decisions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/docs/design-decisions.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/docs/quickstart.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- 1 | /.coverage 2 | /htmlcov 3 | -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/README_integration_tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/tests/README_integration_tests.md -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/cov.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/tests/cov.sh -------------------------------------------------------------------------------- /tests/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/tests/manage.py -------------------------------------------------------------------------------- /tests/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/tests/requirements.txt -------------------------------------------------------------------------------- /tests/testapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testapp/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/tests/testapp/admin.py -------------------------------------------------------------------------------- /tests/testapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/tests/testapp/models.py -------------------------------------------------------------------------------- /tests/testapp/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/tests/testapp/settings.py -------------------------------------------------------------------------------- /tests/testapp/templates/404.html: -------------------------------------------------------------------------------- 1 |

Page not found

2 | -------------------------------------------------------------------------------- /tests/testapp/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/tests/testapp/templates/base.html -------------------------------------------------------------------------------- /tests/testapp/templates/testapp/article_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/tests/testapp/templates/testapp/article_detail.html -------------------------------------------------------------------------------- /tests/testapp/templates/testapp/page_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/tests/testapp/templates/testapp/page_detail.html -------------------------------------------------------------------------------- /tests/testapp/test_checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/tests/testapp/test_checks.py -------------------------------------------------------------------------------- /tests/testapp/test_content_editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/tests/testapp/test_content_editor.py -------------------------------------------------------------------------------- /tests/testapp/test_contents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/tests/testapp/test_contents.py -------------------------------------------------------------------------------- /tests/testapp/test_playwright.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/tests/testapp/test_playwright.py -------------------------------------------------------------------------------- /tests/testapp/test_playwright_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/tests/testapp/test_playwright_helpers.py -------------------------------------------------------------------------------- /tests/testapp/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/tests/testapp/urls.py -------------------------------------------------------------------------------- /tests/testapp/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/tests/testapp/views.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feincms/django-content-editor/HEAD/tox.ini --------------------------------------------------------------------------------