On Nov 12, 4:18 pm, neridaj <[email protected]> wrote: > since FlatPage is already registered how do I properly register an > InlineModelAdmin object? >
You can use: admin.site.unregister(FlatPage) and then re-register with your FlatPageAdmin class: admin.site.register(FlatPage, MyFlatPageAdmin) -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/django-users?hl=.

