On Wed, Dec 3, 2008 at 2:46 PM, VoiDeT <[EMAIL PROTECTED]> wrote: > > Hi Karen, > > Thanks alot for your quick reply! > Indeed the admin.site.register(Group, GroupAdmin) was meant to write > as admin.site.register(GroupLevels, GroupAdmin). However when i do > this it doesn't display it inline, instead merely throws back an error > saying Group doesn't have a foreignkey to GroupLevels. > > So what i have above is trying to link GroupLevels inline with the > Group model, or no? > > What am i missing here?
I think you've got things backwards in terms of what should be specified as Inline and what should be registered. You're trying to inline Groups in GroupLevels, but your models as specified support inlining GroupLevels in Groups: class GroupLevelsInline(admin.TabularInline): model = GroupLevels class GroupAdmin(admin.ModelAdmin): inlines = [GroupLevelsInline,] admin.site.register(Group, GroupAdmin) Karen --~--~---------~--~----~------------~-------~--~----~ 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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---