Will Django user permissions work for models with inline tabular forms of other models?

Posted by stinkypyper on Stack Overflow See other posts from Stack Overflow or by stinkypyper
Published on 2010-03-15T20:15:46Z Indexed on 2010/03/23 17:23 UTC
Read the original article Hit count: 249

Filed under:
|

I am setting up DJango admin to make a model editable. On the same page I have tabular inline of a child model. Everything works as expected. Now I want to restrict permission on the tabular inline child form. Specifically remove update and delete permissions on it. I have tried removing the permissions for the admin user using the 'user permissions' of that user. However, it does not work. Does DJango respect the user permissions in regards to inline model forms?

© Stack Overflow or respective owner

Related posts about django

Related posts about django-admin