How i can show django proxy model to a virtual app

I create a proxy model from orginal model Product. How I can show this proxy model to another virtual app called "Store2"

class ProductProxy(models.Product):
 class Meta:
    proxy = True

 @admin.register(ProductProxy)
  class HeroProxyAdmin(admin.ModelAdmin):
    list_display = ['id']

 @admin.register(models.Product)
  class ProductProxyAdmin(admin.ModelAdmin):
    list_display = ['id', 'title'

enter image description here

Back to Top