[Django]-Is there a Django app that can handle groups and permissions?

3👍

Three permissions are generated per model by default, but you can define additional permissions that you can use for other purposes. From there, the permissions decorator can handle authorization.

0👍

You need an app like django-guardian or something to handle object-level permissions, not model.

👤azibi

Leave a comment