vote up 0 vote down star
2

One company with many branches across the world using the same app. Each branch's supervisor, signing into the same /admin, should see and be able to manage only their records across many models (blog, galleries, subscribed users, clients list, etc.).

How to solve it best within django? I need a flexible and reliable solution, not hacks. Never came across this task, so really have no idea how to do it for the moment.

Tx

flag

57% accept rate
Does your model have any columns to support "only their records"? Could you show your model? Otherwise, we're just guessing. – S.Lott Aug 19 at 19:14
obviously it will have such a column – zalew Aug 19 at 23:40

1 Answer

vote up 1 vote down check

There is a nice tutorial here on Django Admin. It includes customizing the Admin to add row-level permissions (which, as i understand it, is what you want).

link|flag
tx, that's it! "Of course, nothing currently prevents a determined user from accessing an edit page for an unauthorized document by knowing its ID. Truly secure row-level permissions require more method overriding. Because admin users are generally trusted to some degree anyway, sometimes basic permissions are enough to provide a streamlined workflow. " if you had any ready made solution for that one, i'd be thankful, if not i'll try it myself later. – zalew Aug 19 at 23:43

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.