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
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
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
3 matches
Mail list logo