Haystack Result Highlights
May 20, 2010
It's possible to get Haystack to show the part of the document that matches the search, and to highlight the matched terms in yellow.
forms.py
Modify the search form MySearchForm so that the superclass is HighlightedModelSearchForm:
from haystack.forms import HighlightedModelSearchForm from django import forms from myproject.project.models import Project class MySearchForm …