Re: django 1.7 Groups

2014-09-15 Thread John Rodkey
I just thought of this this morning too. Thanks for the recommendation -- 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 django-users+unsubscr...@googlegroups.co

Re: django 1.7 Groups

2014-09-15 Thread marc
Hi, changing the base Group model is not very easy. My suggestion is to create a ManyToMany relation on your Company model. class Company(models.Model): groups = models.ManyToManyField("auth.Group") The design allows in theory many companies to have the same group, but this you c

django 1.7 Groups

2014-09-12 Thread John Rodkey
How can I modify the auto generated auth groups to include a foreign key? We wish to add a foreign key to show group ownership to a company table. For example, Company A could create a librarians group and assign users. Company B could create a brokers group and assign users -- You received t