Hi all! I have this situation:
class A(models.Model): ... class B(models.Model): --- class C(models.Model): .... Then I have User 1, User 2 and User 3 B and C are inlines for A I register A, B and C in admin I want User 1 and add and edit B and can't add or edit A and I want User 2 can add and edit on A but not on A But in both situations they can only do it (and see it) as they are Inlines And I need A, B and C registered in admin because User 3 can add and edit B and C while they are not Inlines I googled it and I can't find any solution -- 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. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/b02e9a8e-b27c-4280-898d-dc8f74df0542%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.

