[Answer]-How to create a permissions model for accessing apps in a project?

1👍

Sounds like what django admin do.

You can use django’s permissions for that. Basically you assign permissions to groups and then you put your users in those groups (a user can be in several groups).

Leave a comment