Hi.
To achieve object level permissions you need to write custom authentication
backend.
Django does provide support for object level permissions but there isn't
default implementation because object level permissions have different
meaning for different people.
See auth docs for more informatio
I want to add object level permissions to the Django'd core auth app Permission
model.
currently permission instances follow this string format
'._' ideally i want this object level permissions to
follow a similar string format with as few variations from the originals as
possible
but the mai