I would like to have a more detailed resolution in my Django project, but cannot decide which application to use. I have something like:
class Item(models.Model): name = models.CharField(max_length=64, unique=True) description = models.CharField(max_length=128, default='') logo = ImageField(upload_to=/tmp, blank=True, null=True)
Now, with standard Django permissions, I have the opportunity to choose between adding, changing and deleting, what I want to have is an extended change permission, to offer the ability to give group rights only to change the logo, for example, but prohibit the same group. to change the item description. I donβt want or need a relationship between the user and the record, but just provide the opportunity for different groups to edit individual fields of the model using the standard administrator interface. I'm not even sure what I'm talking about object permission?
Does anyone know what is best to use or how do I implement it myself? I could also imagine that read-only users have access to / read everything, but it's impossible to change them, and it's impossible.
Thanks for any help.
tinti
source share