Hi there,
I'm using django-haystack for a search page on my site. I'm basically done, but not quite happy with the ordering and not quite sure how haystack decides how to order everything.
I know I can over-ride the SearchQuerySet by using order_by
but that over-rides it entirely. Let's say I want to force the search to order by in stock (BooleanField), so that the products that are in stock show up on top, but then do everything else as it normally would. How do I do that?
I tried doing order_by('-in_stock', 'content')
figure content was what it used by default but it produces very different results from if I just leave it to do its own ordering.
Thanks for any input on this matter!