Re: AUTH_PROFILE_MODULE confusion

2009-01-23 Thread NoviceSortOf
SEE ALSO : a core method in django get_profile() django/contrib/auth/models.py and as used in profiles/views.py profile_obj = request.user.get_profile() --~--~-~--~~~---~--~~ You received this message because you are subscrib

Re: AUTH_PROFILE_MODULE confusion

2009-01-22 Thread NoviceSortOf
Although unmentioned in the django-registration docs, reading the django-profiles code I see a method called create_profile...which is intended for this purpose, for now I'll try giving that a try. def create_profile(request, form_class=None, success_url=None, template_name='p

Re: AUTH_PROFILE_MODULE confusion

2009-01-22 Thread NoviceSortOf
creecode: I've tried your 2 suggestions with one with no results, and the second suggestion perhaps i did not understand enough of where the code should go to make it work. ** Trigger adding instanc

Re: AUTH_PROFILE_MODULE confusion

2009-01-21 Thread NoviceSortOf
creecode: we cross posted yesterday. i tried your suggestion about using signal but could not get it to add records to the designated user profile. for now i've reinstalled registration upgrading to .06 as well as the matching userprofile profiles .06 Still am encountering hours of problems ge

Re: AUTH_PROFILE_MODULE confusion

2009-01-20 Thread NoviceSortOf
* Objective create and save a row/record to the table defined as AUTH_PROFILE_MODULE via the instructions in models.py I'll demonstrate what I've tried to do so far, all which seemed logical but had no effect other than adding a row to auth.user and registration.registrationprofile. my custom

Re: AUTH_PROFILE_MODULE confusion

2009-01-20 Thread creecode
Hello NoviceSortOf, On Jan 20, 8:42 am, NoviceSortOf wrote: > * django-registration is installed and works great Yes, it is! Thank you James Bennett! > * i'd suspect that somewhere in models.py there would be a hook for > this, >   there is reference to something called profile_callback that

Re: AUTH_PROFILE_MODULE confusion

2009-01-20 Thread NoviceSortOf
Thanks creecode: I've read those docs in the past, but they do help in further refreshing my memory, and further refining the question. * django-registration is installed and works great, the only problem I have is that somehow I need to populate the profiles table defined as AUTH_PROFILE_M

Re: AUTH_PROFILE_MODULE confusion

2009-01-19 Thread creecode
Hello NoviceSortOf, You may want to check out this Django documentation < http://docs.djangoproject.com/en/dev/ref/settings/#auth-profile-module > and < http://docs.djangoproject.com/en/dev/topics/auth/ > on AUTH_PROFILE_MODULE which may clear up your confusion. Registration doesn't use AUTH_PRO