Luis P. Mendes wrote:
> But if he chooses to apply five filters, there will have to be five
> filter methods appended, or five key=values pairs as arguments.

You can do something like this:

from django.db.models import Q

def my_view(request):
    query = Q()
    for i in range(1, 13):
        chk = "var%d" % i
        if request.has_key(chk) and request[key]:
            query = query & Q(**{chk:True})

    objects = MyModel.objects.filter(query)

You build up a dynamic "and" query with a term for each checked box in
the UI. Then you use that compound query to filter your model objects.

Now that I think about it, since this is an "and" you could also do:

def my_view(request):
    query = {}
    for i in range(1, 13):
        chk = "var%d" % i
        if request.has_key(chk) and request[key]:
            query[chk] = True

    objects = MyModel.objects.filter(**query)


The first pattern is a little more generic (would also work with an
"or").
-Dave


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