mirror of
https://gitlab.com/animath/si/plateforme-corres2math.git
synced 2024-12-26 05:42:20 +00:00
11 lines
245 B
Python
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
|