This app attempts to provide a generic category system that multiple apps could use. It uses MPTT for the tree storage and provides a custom admin for better visualization (copied and modified from feinCMS).
Please consider to make slug unique by default or provide some method/configuration/documentation to achieve it.
Custom model overriding is not possible:
django.core.exceptions.FieldError: Local field 'slug' in class 'Categories' clashes with field of similar name from base class 'CategoryBase'.
So actual only possibility is modifying django-categories sourcecode. True?
Or custom new CategoryBase model, but shouldn't it be more easy?
Please consider to make slug unique by default or provide some method/configuration/documentation to achieve it.
Custom model overriding is not possible:
django.core.exceptions.FieldError: Local field 'slug' in class 'Categories' clashes with field of similar name from base class 'CategoryBase'.
So actual only possibility is modifying django-categories sourcecode. True? Or custom new CategoryBase model, but shouldn't it be more easy?