1
0
mirror of https://gitlab.com/animath/si/plateforme-corres2math.git synced 2025-02-06 13:33:00 +00:00

17 lines
388 B
Python
Raw Normal View History

2020-12-26 21:26:26 +01:00
# Copyright (C) 2020 by Animath
# SPDX-License-Identifier: GPL-3.0-or-later
from haystack import indexes
from .models import Registration
2020-10-15 16:29:50 +02:00
class RegistrationIndex(indexes.ModelSearchIndex, indexes.Indexable):
2020-10-30 19:46:46 +01:00
"""
Registrations are indexed by the user detail.
"""
2020-10-15 17:26:22 +02:00
text = indexes.NgramField(document=True, use_template=True)
2020-10-15 16:29:50 +02:00
class Meta:
model = Registration