Hi, i'm developing an application and i need a search function like
admin search in some models. I've tryed modifying generic views, but i
can't make it work. The idea is something like:

[ CODE ]
def object_list([...] search_fields=None, q=None [...]):
    """
    [...]
        search_fields
            fields to search for
        q
            query to search for
    """
    [...]
    queryset = queryset._clone()

    if not q:

        q = request.GET.get('q')

    if search_fields and q:

        or_queries = [Q(**{'%r__icontains = %s' % (field_name, q)}) for
field_name in search_fields]
        other_qs = queryset
        other_qs = other_qs.filter(reduce(operator.or_, or_queries))

        queryset = other_qs

    if paginate_by:
        [...]
[ CODES ]

I've found this code in this list, but i can't get it work. ¿some idea
or help?


--~--~---------~--~----~------------~-------~--~----~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~----------~----~----~----~------~----~------~--~---

Reply via email to