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