Why is it not showing me the permissions or the group on django?

Viewed 17
1 Answers

It does show you those.. The pattern shown is: {app} | {model} | {permission}

Example: admin | log entry | Can add log entry

Means whether the current object can add (create) a new instance of the log entry model that resides in admin app.

Related