Hi.
You are on the wrong track trying to do it with request.user. The
problem is that when you create the form, there is no request
object with associated user. You need to do your stuff in the
__init__.py instead, where you can create a custom, using
the user object as an extra variable.

I got a link to a blog post describing how to do it, so I would
suggest that you take a look at it and try to use the method.

http://collingrady.wordpress.com/2008/07/24/useful-form-tricks-in-django/

~Jakob

On 26 Mar., 19:37, Konstantin S <ktechli...@gmail.com> wrote:
> Hello!
>
> I know this a very stupid question but nevertheless how can I get
> request.user object in forms.py file ? I am trying  to do something
> like:
>
> class ItemGetForm(forms.Form):
>     box = forms.ModelMultipleChoiceField(
>         queryset=Box.objects.filter(owner=request.user),
>         widget=forms.RadioSelect)
>     label = forms.IntegerField()
>
> Where:
>
> class Box(models.Model):
>     owner = models.ForeignKey(User)
>     description = models.CharField(max_length=500, blank=True, null=True)
>
>     def __unicode__(self):
>         return self.description
>
> But constantly get an error 'Caught an exception while rendering: name
> 'request' is not defined'.
>
> If am completely wrong here what is a preferable way of doing such things ?
--~--~---------~--~----~------------~-------~--~----~
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