Hi,

When you create the profile assign request.user to the user, so:

profile_obj = UserProfile(user = request.user)

Also in the UserProfile model make sure that the entries that are
allowed to be blank are set up to allow that, eg:

address = models.CharField(max_length=60, blank = True)
birthday = models.DateField(blank = True, null = True)

Hope that helps


On Aug 4, 10:31 am, Steven Nien <steven.n...@gmail.com> wrote:
> Hi all,
> I have built a model like this:
>
> class UserProfile(models.Model):
>     address = models.CharField(max_length=60)
>     birthday = models.DateField()
>     user = models.ForeignKey(User)
>
> I render the model by the ModelForm:
>
> class UserProfileForm(ModelForm):
>     class Meta:
>         model = UserProfile
>         exclude = ('user', )
>
> I am trying to create a "blank" profile for the current user, if the
> profile does not already exist.
> I have tried the following code but it didn't work.
>
> if request.user.is_authenticated():
>     username = request.user.username
>     try:
>         profile = request.user.get_profile()
>     except ObjectDoesNotExist:
>         profile_obj=UserProfile(user=username)
>         profile_obj.save()
>
> which I got a error message:
> Cannot assign "u'someone": "UserProfile.user" must be a "User"
> instance.
>
> Can someone help me?
> Many thanks.
--~--~---------~--~----~------------~-------~--~----~
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 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to