Also, you might want to make sure you have an authenticated user (by
either decorating your view function with @login_required) or check
that the user in the request is either authenticated or not the
anonymous user (by including an if statement).

On Apr 14, 8:36 pm, James Bennett <ubernost...@gmail.com> wrote:
> On Tue, Apr 14, 2009 at 5:12 PM, stkpoi <goodwin....@gmail.com> wrote:
> >    if form.is_valid():
> >      submission = Submission.objects.get_or_create(
> >      title=form['title'],
> >      link=form['link'],
> >      user=request.user.username
> >      )
>
> And right there's your problem. The value to put into a ForeignKey is
> the actual User object itself, not its id or username or some other
> attribute. The error message you're seeing is a consequence of putting
> the wrong value in there.
>
> --
> "Bureaucrat Conrad, you are technically correct -- the best kind of correct."
--~--~---------~--~----~------------~-------~--~----~
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