On 19/08/15 13:25, Remaze Vs wrote:
> username=self.request.user.username

What do you want to accomplish with this line?
This cannot work.
Where should self and self.request come from?

You probably want to us a ForeignKey to the User model.
(user = models.ForeignKey(User))
Afterwards you have to add request.user to the product in your view
where you save it.

Use something like
product = form.save(commit=False) # [0]
product.user = request.user
product.save()

And you should move your form to forms.py and add a view to views.py.

-- Florian

[0]
https://docs.djangoproject.com/en/1.8/topics/forms/modelforms/#the-save-method

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/55D477E8.1010802%40ist-total.org.
For more options, visit https://groups.google.com/d/optout.

Attachment: signature.asc
Description: OpenPGP digital signature

Reply via email to