14 lines
311 B
Python
14 lines
311 B
Python
from haystack import indexes
|
|
|
|
from .models import Registration
|
|
|
|
|
|
class RegistrationIndex(indexes.ModelSearchIndex, indexes.Indexable):
|
|
"""
|
|
Registrations are indexed by the user detail.
|
|
"""
|
|
text = indexes.NgramField(document=True, use_template=True)
|
|
|
|
class Meta:
|
|
model = Registration
|