Can someone show me an example of how to filter fulltext search results with django-haystack using attributes? I went through the tutorial on their website but am still mot sure on how to use haystack.
For instance, let's say I have a class Product:
class Product(models.Model):
title = models.CharField(max_length=200)
description = models.TextField()
category = models.CharField(max_length=10)
color = models.CharField(max_length=10)
If I want to provide fulltext search on title & description, and filtering (based on drop-down lists, not free text) on category and color - what do I need to do? Can I use the forms and views that come with haystack?
Thanks.