1👍
You might try to inherit C.Meta
from A.Meta
:
class C(Orderable, Slugged):
...
class Meta(A.Meta):
pass # C.order_with_respect_to is equal to A.order_with_respect_to
Source:stackexchange.com
1👍
You might try to inherit C.Meta
from A.Meta
:
class C(Orderable, Slugged):
...
class Meta(A.Meta):
pass # C.order_with_respect_to is equal to A.order_with_respect_to