I am looking to attach a profile to the Django user object based on
the b-list article, and had a question regarding saving models.

Does/ should the profile be automatically saved at the same time the
User model is saved? e.g. if I call a save on the user object, and
i've got the AUTH_PROFILE_MODULE correctly set, should the associated
profile object be saved automatically as well? Right now it doesn't
seem to, and I'm wondering if I need to set something else, e.g.
profile_callback (which from what I can find on it, would only work
when creating the object).

Or do I have to manually manage saving both objects when making a
change? If so, what's the preferred way to do this? by managing the
profile via the user object, or by managing the user object via the
profile (overriding the profile save method)?

Thanks in advance,

-Chris


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to