That's what I was thinking, so my question is can I do this?

def search_detail(request):
    if 'q' in request.GET:
        q = request.GET['q']
        search_results = Activity.objects.filter
(country__country__icontains=q)
        firm_search =  Activity.objects.filter
(firm__firm__icontains=q)
        client_search = Activity.objects.filter
(client__client__icontains=q)
    else:
        q = None
        search_results = None
    return render_to_response('country/search_detail.html',
                {'search_results': search_results, 'query': q})




On Apr 16, 1:30 pm, commander_coder <commander_co...@hotmail.com>
wrote:
> Perhaps I don't understand the question, but why cannot your context
> include a number of different pieces of data?
>   return render_to_response('country/search_detail.html',
>                 {'search_results': search_results,
>                  'firm_search':firm_search,
>                  'client_search':client_search,
>                  'query': q})
--~--~---------~--~----~------------~-------~--~----~
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