1
0
mirror of https://gitlab.com/animath/si/plateforme-corres2math.git synced 2025-07-01 02:01:15 +02:00
Files
plateforme-corres2math/apps/registration/search_indexes.py
Yohann D'ANELLO f05d2cca0b Autocomplete index
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