Re: Django-registration with django-profile

2010-04-05 Thread Praveen
Here i have done look at my blog http://praveensunsetpoint.wordpress.com/category/django/django-registration-profile/ On Apr 5, 1:03 am, Alessandro Ronchi wrote: > 2010/4/3 shacker : > > > Cool!  Would be nice to put your solution up on djangosnippets.org or > > similar for the benefit of others.

Re: Django-registration with django-profile

2010-04-04 Thread Alessandro Ronchi
2010/4/3 shacker : > Cool!  Would be nice to put your solution up on djangosnippets.org or > similar for the benefit of others. It's nothing new. I've copied the default backend for django-registration, changed the RegistrationForm and handled correctly the form with a view. It's simply a matter

Re: Django-registration with django-profile

2010-04-03 Thread shacker
On Apr 3, 9:21 am, Alessandro Ronchi wrote: > > I solved with a custom django-registration backend with a custom form. > > The form save directly to profile model, and I don't need > django-profiles, because it's unuseful. > > With that solution I can ask users all their data on registration, in

Re: Django-registration with django-profile

2010-04-03 Thread Alessandro Ronchi
2010/4/3 shacker : > On Apr 3, 2:39 am, Alessandro Ronchi > wrote: >> I've made a profile model and attached it to django-profile app that >> works correctly  (it shows /profiles/create/ with the form). >> >> I need to put together that profile model with django-registration, so >> when a user goe

Re: Django-registration with django-profile

2010-04-03 Thread shacker
On Apr 3, 2:39 am, Alessandro Ronchi wrote: > I've made a profile model and attached it to django-profile app that > works correctly  (it shows /profiles/create/ with the form). > > I need to put together that profile model with django-registration, so > when a user goes to > > /account/register/

Django-registration with django-profile

2010-04-03 Thread Alessandro Ronchi
I've made a profile model and attached it to django-profile app that works correctly (it shows /profiles/create/ with the form). I need to put together that profile model with django-registration, so when a user goes to /account/register/ must fill both user default values and my custom profile