1
0
mirror of https://gitlab.com/animath/si/plateforme-corres2math.git synced 2024-12-26 18:22:21 +00:00
plateforme-corres2math/apps/registration/search_indexes.py

11 lines
245 B
Python
Raw Normal View History

from haystack import indexes
from .models import Registration
2020-10-15 14:29:50 +00:00
class RegistrationIndex(indexes.ModelSearchIndex, indexes.Indexable):
2020-10-15 15:26:22 +00:00
text = indexes.NgramField(document=True, use_template=True)
2020-10-15 14:29:50 +00:00
class Meta:
model = Registration