1
0
mirror of https://gitlab.com/animath/si/plateforme-corres2math.git synced 2024-12-26 03:42:20 +00:00
plateforme-corres2math/apps/registration/search_indexes.py
2020-10-15 17:26:22 +02:00

11 lines
245 B
Python

from haystack import indexes
from .models import Registration
class RegistrationIndex(indexes.ModelSearchIndex, indexes.Indexable):
text = indexes.NgramField(document=True, use_template=True)
class Meta:
model = Registration