Django — Proxy model admin inline not appearing

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.

Leave a Comment