Hello, 

I want to find out if there is anyway to pass two querysets into a url pattern.

i have this url pattern at the moment.

UserProfile_info = {
    "queryset" : UserProfile.objects.all(),
    "extra_context" : {"keyword_list" : Keyword.objects.all}
}

    url(r'^profile/$', list_detail.object_list, UserProfile_info),


I understand from http://www.djangobook.com/en/1.0/chapter09/ that the 
extra_context field is to defind another query set.

in my Userprofile.html i have the following code:

{% for userprofile in object_list %}
            {% if userprofile.username = user.username %}

that will give me the list of items in userprofile table in the database.

Is there a way to include the list of items from the keyword table as well?
    









Best Regards,

Stanwin Siow



-- 
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