If your proxy model admin inline is not appearing, make sure you remember to set your inline model as the real model, not the proxy model.
class MyInline(admin.TabularInline):
model = MyRealModel # not MyProxyModel
That’s all folks.
Yuji's Increasingly Infrequent Ramblings
If your proxy model admin inline is not appearing, make sure you remember to set your inline model as the real model, not the proxy model.
class MyInline(admin.TabularInline):
model = MyRealModel # not MyProxyModel
That’s all folks.