On Wed, Dec 3, 2008 at 7:08 PM, VoiDeT <[EMAIL PROTECTED]> wrote:

>
> Hey Karen,
>
> I have tried this scenario above, however the GroupLevels does not
> show inline with the Groups Model in Admin. I don't understand why
> not, no errors, just simply does not display. I have also tried to
> inline the Groups Model into the GroupLevels Model yet i get an error
> saying that Groups doesn't have a foreignkey to GroupLevels which is
> true.
>
> So what am i missing here?
>
> This is my code now:
>
> class GroupLevels(models.Model):
>        group = models.ForeignKey(Group, unique=True)
>        shows = models.PositiveIntegerField(default=0)
>        items = models.PositiveIntegerField(default=0)
>
>        class Meta:
>                verbose_name_plural = "Group Permissions"
>                verbose_name = "Group Permission"
>
>        def __unicode__(self):
>                return self.group.name
>
> class GroupLevelsInline(admin.TabularInline):
>        model = GroupLevels
>
> class GroupLevelsAdmin(admin.ModelAdmin):
>        inlines = [GroupLevelsInline,]
>
> admin.site.register(Group, GroupLevelsAdmin)
>

Since you are overriding an existing admin definition, you'll need to
admin.site.unregister(Group) before you can register your own. Not sure why
you are not seeing an AlreadyRegistered exception -- are you including the
admin defs in your models.py file?  You should put them in an admin.py file
and use admin.autodiscover() in your urls.py.  If you do that with what you
have now I think you will see AlreadyRegistered when you attempt to navigate
to the admin url, which you can fix by first unregistering the existing
Group admin before registering your own.

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
-~----------~----~----~----~------~----~------~--~---

Reply via email to