I am implementing an e-commerce website using django. The product catalog will be big (hundreds of products). I would like to know how I should implement product filters in search.

E.g. let's say I put up about 30 products initially. The user might want to filter the search based on some product attributes like color, size, category, etc.

Is there any feature in django that enables building such features? If not, how should I go about it? Is querying the database everytime the user picks an attribute, the only approach?

Thanks.

link|improve this question

50% accept rate
feedback

1 Answer

up vote 1 down vote accepted

I think you are looking for a faceted search.

Haystack should be the django app you are looking for: http://docs.haystacksearch.org/dev/faceting.html#what-is-faceting

Furthermore you could take a look at django-filter

link|improve this answer
Thanks. Looks promising. I shall give it a try. – vkb001 Apr 13 '11 at 7:18
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.