django-natural-keys icon indicating copy to clipboard operation
django-natural-keys copied to clipboard

Use as a decorator

Open scnerd opened this issue 4 years ago • 3 comments

Requiring that a model inherit from NaturalKeyModel can conflict with other model modifiers that also requiring inheritance. It would be nice if the same functionality could be exposed via a class decorator. E.g.,

@NaturallyKeyedModel
class MyModel(SomeOtherModelSuperclass):
    # ...

scnerd avatar Jan 14 '20 16:01 scnerd