[Answered ]-How to show two tables inline in django admin?

1👍

In admin.site.register(ProductAdmin, ProductImageAdmin) you should register your model and ProductAdmin you don’t add ProductImageAdmin so replace it with admin.site.register(Product, ProductAdmin)

👤seif

Leave a comment