1
0
mirror of https://gitlab.com/animath/si/plateforme-corres2math.git synced 2025-07-08 06:50:19 +02:00
Files
plateforme-corres2math/apps/registration/search_indexes.py
2020-10-15 14:55:45 +02:00

14 lines
463 B
Python

from haystack import indexes
from .models import Registration
class RegistrationIndex(indexes.SearchIndex, indexes.Indexable):
text = indexes.EdgeNgramField(document=True, model_attr="user__username")
last_name = indexes.EdgeNgramField(model_attr="user__last_name")
first_name = indexes.EdgeNgramField(model_attr="user__first_name")
email = indexes.EdgeNgramField(model_attr="user__email")
def get_model(self):
return Registration