Re: Display related field in queryset

2010-12-13 Thread Marcos Moyano
You can use field lookups:
http://docs.djangoproject.com/en/dev/topics/db/queries/#field-lookups-intro
ie: Travels.objects.values('date', 'destination__name')

Rgds,
Marcos

On Mon, Dec 13, 2010 at 6:51 AM, nsbk  wrote:

> Hello,
>
> I'm using http://code.google.com/p/django-jqgrid/ to display grids
> into a Django application. Since I'm pretty new to Django I don't know
> how to tell Django to retrurn the value of the related field instead
> of the id of the related field. What I do now is: travels =
> Travel.objects.values('date','destination'), but that returns the date
> of the travel and the id of the destination, FK to Destination model/
> table. How should I query Django so it returns the description of the
> destination instead of its id?
>
> Thanks in advance.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To post to this group, send email to django-us...@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.
>
>


-- 
Some people, when confronted with a problem, think “I know, I'll use regular
expressions.” Now they have two problems.

Jamie Zawinski, in comp.emacs.xemacs

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@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.



Display related field in queryset

2010-12-13 Thread nsbk
Hello,

I'm using http://code.google.com/p/django-jqgrid/ to display grids
into a Django application. Since I'm pretty new to Django I don't know
how to tell Django to retrurn the value of the related field instead
of the id of the related field. What I do now is: travels =
Travel.objects.values('date','destination'), but that returns the date
of the travel and the id of the destination, FK to Destination model/
table. How should I query Django so it returns the description of the
destination instead of its id?

Thanks in advance.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@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.