1
0
mirror of https://gitlab.com/animath/si/plateforme-corres2math.git synced 2025-02-06 14:13:03 +00:00
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