Re: Reflect changes made through Manager to model instances

2010-05-18 Thread Daniel Roseman
On May 18, 9:21 am, Alexei Selivanov wrote: > Is it possible to reflect changes made through model's Manager to > model instances? For example I have ProfileManager class like so: > > class ProfileManager(models.Manager): > >     def activate_profile(self, id, activation_key): >         # do activ

Reflect changes made through Manager to model instances

2010-05-18 Thread Alexei Selivanov
Is it possible to reflect changes made through model's Manager to model instances? For example I have ProfileManager class like so: class ProfileManager(models.Manager): def activate_profile(self, id, activation_key): # do activation And I want changes made by this method be visible