├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── create-release.yml │ ├── pre-commit-autoupdate.yml │ └── test-package.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── SECURITY.md ├── images ├── treenode-admin-display-mode-accordion.png ├── treenode-admin-display-mode-breadcrumbs.png └── treenode-admin-display-mode-indentation.png ├── pyproject.toml ├── requirements-test.txt ├── requirements.txt ├── runtests.py ├── setup.py ├── tests ├── __init__.py ├── fixtures │ └── test_fixtures_issue_0088.json ├── models.py ├── settings.py ├── test_admin.py ├── test_fixtures.py ├── test_metadata.py ├── test_models.py ├── test_parents.py ├── test_performance.py ├── test_signals.py └── test_utils.py ├── tox.ini └── treenode ├── __init__.py ├── admin.py ├── cache.py ├── debug.py ├── exceptions.py ├── forms.py ├── locale ├── en │ └── LC_MESSAGES │ │ └── django.po └── it │ └── LC_MESSAGES │ └── django.po ├── memory.py ├── metadata.py ├── models.py ├── signals.py ├── static └── treenode │ ├── css │ └── treenode.css │ └── js │ └── treenode.js └── utils.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-treenode/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-treenode/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-treenode/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-treenode/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-treenode/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/create-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-treenode/HEAD/.github/workflows/create-release.yml -------------------------------------------------------------------------------- /.github/workflows/pre-commit-autoupdate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-treenode/HEAD/.github/workflows/pre-commit-autoupdate.yml -------------------------------------------------------------------------------- /.github/workflows/test-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-treenode/HEAD/.github/workflows/test-package.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-treenode/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-treenode/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-treenode/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-treenode/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-treenode/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-treenode/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-treenode/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-treenode/HEAD/SECURITY.md -------------------------------------------------------------------------------- /images/treenode-admin-display-mode-accordion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-treenode/HEAD/images/treenode-admin-display-mode-accordion.png -------------------------------------------------------------------------------- /images/treenode-admin-display-mode-breadcrumbs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-treenode/HEAD/images/treenode-admin-display-mode-breadcrumbs.png -------------------------------------------------------------------------------- /images/treenode-admin-display-mode-indentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-treenode/HEAD/images/treenode-admin-display-mode-indentation.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-treenode/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-treenode/HEAD/requirements-test.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | django >= 2.2 2 | -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-treenode/HEAD/runtests.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-treenode/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/test_fixtures_issue_0088.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-treenode/HEAD/tests/fixtures/test_fixtures_issue_0088.json -------------------------------------------------------------------------------- /tests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-treenode/HEAD/tests/models.py -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-treenode/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/test_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-treenode/HEAD/tests/test_admin.py -------------------------------------------------------------------------------- /tests/test_fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-treenode/HEAD/tests/test_fixtures.py -------------------------------------------------------------------------------- /tests/test_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-treenode/HEAD/tests/test_metadata.py -------------------------------------------------------------------------------- /tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-treenode/HEAD/tests/test_models.py -------------------------------------------------------------------------------- /tests/test_parents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-treenode/HEAD/tests/test_parents.py -------------------------------------------------------------------------------- /tests/test_performance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-treenode/HEAD/tests/test_performance.py -------------------------------------------------------------------------------- /tests/test_signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-treenode/HEAD/tests/test_signals.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-treenode/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-treenode/HEAD/tox.ini -------------------------------------------------------------------------------- /treenode/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-treenode/HEAD/treenode/__init__.py -------------------------------------------------------------------------------- /treenode/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-treenode/HEAD/treenode/admin.py -------------------------------------------------------------------------------- /treenode/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-treenode/HEAD/treenode/cache.py -------------------------------------------------------------------------------- /treenode/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-treenode/HEAD/treenode/debug.py -------------------------------------------------------------------------------- /treenode/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-treenode/HEAD/treenode/exceptions.py -------------------------------------------------------------------------------- /treenode/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-treenode/HEAD/treenode/forms.py -------------------------------------------------------------------------------- /treenode/locale/en/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-treenode/HEAD/treenode/locale/en/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /treenode/locale/it/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-treenode/HEAD/treenode/locale/it/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /treenode/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-treenode/HEAD/treenode/memory.py -------------------------------------------------------------------------------- /treenode/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-treenode/HEAD/treenode/metadata.py -------------------------------------------------------------------------------- /treenode/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-treenode/HEAD/treenode/models.py -------------------------------------------------------------------------------- /treenode/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-treenode/HEAD/treenode/signals.py -------------------------------------------------------------------------------- /treenode/static/treenode/css/treenode.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-treenode/HEAD/treenode/static/treenode/css/treenode.css -------------------------------------------------------------------------------- /treenode/static/treenode/js/treenode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-treenode/HEAD/treenode/static/treenode/js/treenode.js -------------------------------------------------------------------------------- /treenode/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-treenode/HEAD/treenode/utils.py --------------------------------------------------------------------------------