[Fixed]-Set order_with_respect_to as foreign key of foreign key in django orderable

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

Leave a comment