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. Ho开发者_StackOverflow社区wever, it does not work. Does DJango respect the user permissions in regards to inline model forms?
It works as of django 1.4. Here's the original ticket: http://code.djangoproject.com/ticket/8060
精彩评论