How can I hide fields in admin User edit? Mainly I want to hide permissions and groups selecting in some exceptions, but exclude variable doesn't work :/
|
feedback
|
|
The django admin is not designed for very fine grained control so their are no automated variables designed to allow this type of control. If you need this type of control you're going to have to go it your own. You'll need to override the default admin templates. You'll probably want to use the permissions system to track what users are allowed to do. Keep in mind the level of customization you're making. At some point working to far outside the intended purpose and limitations of the admin app will be more work than simply rolling your own more fine grained CRUD system. | |||
|
feedback
|
|
I may be late to answer this question but any ways, here goes. John is right in concept but I just wanted to do this because I know Any way's the way you hide fields in User model form is: 1. 2: The should allow blank in model. 3: The problems I had was that I used to get a validation error. I looked at the trace back and found out that
the error was because of Use the Code: admin.py:
Hope this helps some one some day. :) | ||||
|
feedback
|