I have a model Child inheriting from a model Parent. In the Parent admin I've got Parent and Child instances, while I would like to have only Parent instances (Child instances are managed in Child admin).

How can I do that?

thanks

jul

link|improve this question

77% accept rate
feedback

1 Answer

up vote 2 down vote accepted

Override the queryset method in your ModelAdmin subclass to only return the objects you need.

class MyParentAdmin(admin.ModelAdmin):

     def queryset(self, request):
         return Parent.objects.filter(whatever_your_criteria_is=True)
link|improve this answer
Perfect. Thanks! – jul Nov 10 '10 at 16:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.