I'm trying to figure out Django Groups and the documentation is pretty bare on the site.
For example, you can use the decorator permission_required()
to check the permissions, however, this only checks if you have assigned permissions directly. I have assigned Users to Groups which have Permissions setup. When using Django's permissions system, it ignores the Groups the User belongs to.
Is there any way to get Django to inherit permissions from the User's Groups?