django haystack whoosh not showing any errors also no results
Clash Royale CLAN TAG #URR8PPP django haystack whoosh not showing any errors also no results I am trying to django-haystack whoosh. Django Haystack & Whoosh search working but in page no giving result. I have looked up this similar question too Django-haystack-whoosh is giving no results Django Haystack & Whoosh Search Working, But SearchQuerySet Return 0 Results pip freeze python==3.6 django==2.0.7 Whoosh==2.7.4 -e git://github.com/django-haystack/django.haystack.git#egg=django-haystack Here is my code: search_indexes.py import datetime from haystack import indexes from search.models import Articles class ArticlesIndex(indexes.SearchIndex, indexes.Indexable): text = indexes.CharField(document = True, use_template = true pub_date = indexes.DateTimeField(model_attr = 'pub_date') content_auto = indexes.EdgeNgramField(model_attr='title') def get_model(self): return Articles def index_queryset(self, using=None) return self.get_mod...