Skip to main content
1 of 4

You can try this also:

override save method as: def save(self, my_val, *args, **kwargs): print my_val # do_something here return super(MyModel, self).save(*args, **kwargs)

On calling save method as: MyModel.save(my_val="fooooo")

this will print my_val and save sa it it