I am developing an app which will have different types of users, and the objective is that in a specific Model, it is completed in a community way.
Example:
3 types of users: UserTotal, UserParcial, UserBase. Class object name ModelFamily, has 10 fields defined (int,char,date) I need all users to be able to see the class in the admin panel, but depending on which one I can only edit some fields.
How could I solve it? I don't have views at the moment, I'm managing everything from the Django Admin panel.
Thank you very much for your time!
I tried to change the permissions from admin but it is at Object level, not object field.