Re: Allauth: Howto registrate User with also saving data UserProfile fields

2015-07-07 Thread Marco Neumann
:17:03 UTC+2 schreef Marco Neumann: > > Hi all, > > > I would like to make a registration form with the User SignUp form and > extra UserProfile fields. > > So after saving the user is created and the data is saved in the > UserProfile model. > > Can someone point m

Allauth: Howto registrate User with also saving data UserProfile fields

2015-07-07 Thread Marco Neumann
Hi all, I would like to make a registration form with the User SignUp form and extra UserProfile fields. So after saving the user is created and the data is saved in the UserProfile model. Can someone point me in the right direction. Thanks in advacend. Greetings Marco neumann -- You

Re: NameError: name 'reciever' is not defined

2015-06-20 Thread Marco Neumann
Thanks for your response. I need a extra pair of eyes. :-) Op zaterdag 20 juni 2015 00:27:07 UTC+2 schreef Marco Neumann: > > Hi There, > > Im stuck on above error. Anyone a hint? Many thanks > > My code in models.py: > > from django.db.models.signals import post_sav

Re: NameError: name 'reciever' is not defined

2015-06-20 Thread Marco Neumann
Need a extra pair of eyes. :-) Thanks for your answer Op zaterdag 20 juni 2015 00:43:00 UTC+2 schreef James Schneider: > > Check your spelling for receiver... > > -James > On Jun 19, 2015 3:26 PM, "Marco Neumann" > wrote: > >> Hi There, >> >> Im

NameError: name 'reciever' is not defined

2015-06-19 Thread Marco Neumann
Hi There, Im stuck on above error. Anyone a hint? Many thanks My code in models.py: from django.db.models.signals import post_save from django.dispatch import receiver from django.db import models from django.contrib.auth.models import User class UserProfile(models.Model): user = models.One