Django-Haystack-Whoosh is giving no results
问题 I'm trying to use Haystack-Whoosh for search in a Django application. I've implemented code same as mentioned in documentation page: django-haystack documentaation but still it is not working no search results were filtered. Here is my code: models.py from django.db import models from datetime import datetime class Newcar(models.Model): car_name = models.CharField(max_length=50) carmodel = models.CharField(max_length=50) car_logo = models.CharField(max_length=1000) pub_date = models