There are a number of hooks in the ModelAdmin
class to allow you to do things this - look at the code in django.contrib.admin.options
.
Two methods that might help you are ModelAdmin.save_form
and ModelAdmin.save_model
, both of which are passed the request object. So you can override these methods in your Admin subclass and do any extra processing you need.
Edited after comment
You're quite right that this won't let you validate the form dependent on the user's privileges. Unfortunately the form instantiation is buried deep within the add_view
and change_view
methods of ModelAdmin
.
There aren't many possibilities without duplicating a lot of existing code. You could override the *_view
methods; or you could try and override the modelform_factory
function to return a new class with the request object baked in already; or you could try fiddling with the form class __new__
method to do the same thing, but that's tricky because of the form metaclass.