Is it possible to implement column level permissions per user in the Django admin site?
Its a small project and I only need two groups of permissions.
In the docs I cant find anything out of the box however I was wondering if its possible to create two admin sites and use separate ModelAdmin.exclude or ModelAdmin.fields for each one? I know it's probably a stretch though.
I tried looking around too but I only found row level permissions (django-granular-permissions).
I know it can be done quite easily in my own views by storing the permissions but I was wondering if there was a way to use the admin site or if there is another app out there.