views:

22

answers:

1

Is it DJango Row Level Permission ready to use in application development? Or is it just a hook so far, that require third party component to work properly?

As of DJango 1.2, syncdb didn't create any special tables/fields to handle Row Level Perimission.

If not available, what is the best dependable implementation available as open source, that integrates well with DJango.

+1  A: 

The Django wiki page says:

A couple years ago, a branch in Django's repository was created to explore implementing finer-grained permissions (at the level of individual objects, rather than at the level of model classes). That branch is long since dead; it has not seen a commit in over two years, and likely will never be updated or integrated into Django in any meaningful way.

Manoj Govindan
yes, that is what I see in docs. But, in DJango 1.2, we have a hook to implement row based permissions (I see modified code), though its just a hook so far.
Narendra Kamma