Hello, I have an application with two model classes that inherit from a base "Store" class, "Restaurant" and "Petshop". The Store class implements the basic information that is common to stores, like an owner, name and address. The children implement their own fields (ex: sells_kittens).
I want to customize their appearance on the admin site and thus I created the code below on my admin.py file. http://dpaste.com/112329/ When I run this, the server gives me the error below: "There are duplicate field(s) in AppleShopAdmin.fieldsets" If I remove the fieldsets for RestaurantAdmin, the app runs fine. I wonder why it complains about the duplication, since these are essentially different classes, even though inherit from a common "Store" class. Any idea? wotaskd --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---