Hi I have an app called myapp within my models eg

class Foo(models):
    fields1 = models(blabla)
    fields2 = models(blabla)

    class Meta:
        verbose_name = "Foo model"
        app_label = 'candy'
        db_table = 'myapp_foo'

class Bar(models):
   fields1 = models(blabla)
    fields2 = models(blabla)

    class Meta:
        verbose_name = "Bar model"
        app_label = 'chocolate'
        db_table = 'myapp_bar'

now I separate them for the admin i use app_label that this show separately
and it works but as super user when i create group
but do not see it does not appear

how I can fix this?

The only code I use is the one above

thank!!

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/django-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to