├── .coveragerc ├── .gitignore ├── .travis.yml ├── AUTHORS.rst ├── CHANGELOG.rst ├── LICENSE ├── MANIFEST.in ├── README.rst ├── category ├── __init__.py ├── admin.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20190103_0846.py │ └── __init__.py ├── models.py ├── south_migrations │ ├── 0001_initial.py │ ├── 0002_auto__add_field_category_parent.py │ ├── 0003_auto__add_field_category_subtitle.py │ └── __init__.py ├── templates │ └── admin │ │ └── category │ │ ├── tree.html │ │ └── tree_node.html ├── tests │ ├── __init__.py │ ├── requirements │ │ ├── 111.txt │ │ ├── 20.txt │ │ └── 21.txt │ ├── settings │ │ ├── 111.py │ │ ├── 20.py │ │ ├── 21.py │ │ └── __init__.py │ └── test_base.py └── tools.py ├── manage.py ├── setup.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praekelt/django-category/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praekelt/django-category/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praekelt/django-category/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praekelt/django-category/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praekelt/django-category/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praekelt/django-category/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praekelt/django-category/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praekelt/django-category/HEAD/README.rst -------------------------------------------------------------------------------- /category/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /category/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praekelt/django-category/HEAD/category/admin.py -------------------------------------------------------------------------------- /category/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praekelt/django-category/HEAD/category/migrations/0001_initial.py -------------------------------------------------------------------------------- /category/migrations/0002_auto_20190103_0846.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praekelt/django-category/HEAD/category/migrations/0002_auto_20190103_0846.py -------------------------------------------------------------------------------- /category/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /category/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praekelt/django-category/HEAD/category/models.py -------------------------------------------------------------------------------- /category/south_migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praekelt/django-category/HEAD/category/south_migrations/0001_initial.py -------------------------------------------------------------------------------- /category/south_migrations/0002_auto__add_field_category_parent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praekelt/django-category/HEAD/category/south_migrations/0002_auto__add_field_category_parent.py -------------------------------------------------------------------------------- /category/south_migrations/0003_auto__add_field_category_subtitle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praekelt/django-category/HEAD/category/south_migrations/0003_auto__add_field_category_subtitle.py -------------------------------------------------------------------------------- /category/south_migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /category/templates/admin/category/tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praekelt/django-category/HEAD/category/templates/admin/category/tree.html -------------------------------------------------------------------------------- /category/templates/admin/category/tree_node.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praekelt/django-category/HEAD/category/templates/admin/category/tree_node.html -------------------------------------------------------------------------------- /category/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /category/tests/requirements/111.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praekelt/django-category/HEAD/category/tests/requirements/111.txt -------------------------------------------------------------------------------- /category/tests/requirements/20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praekelt/django-category/HEAD/category/tests/requirements/20.txt -------------------------------------------------------------------------------- /category/tests/requirements/21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praekelt/django-category/HEAD/category/tests/requirements/21.txt -------------------------------------------------------------------------------- /category/tests/settings/111.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praekelt/django-category/HEAD/category/tests/settings/111.py -------------------------------------------------------------------------------- /category/tests/settings/20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praekelt/django-category/HEAD/category/tests/settings/20.py -------------------------------------------------------------------------------- /category/tests/settings/21.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praekelt/django-category/HEAD/category/tests/settings/21.py -------------------------------------------------------------------------------- /category/tests/settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /category/tests/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praekelt/django-category/HEAD/category/tests/test_base.py -------------------------------------------------------------------------------- /category/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praekelt/django-category/HEAD/category/tools.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praekelt/django-category/HEAD/manage.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praekelt/django-category/HEAD/setup.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praekelt/django-category/HEAD/tox.ini --------------------------------------------------------------------------------