1
0
mirror of https://gitlab.com/animath/si/plateforme-corres2math.git synced 2024-12-13 08:46:53 +00:00
plateforme-corres2math/apps/registration/search_indexes.py
Yohann D'ANELLO 19e25b5d1c Index models
2020-10-15 16:29:50 +02:00

9 lines
180 B
Python

from haystack import indexes
from .models import Registration
class RegistrationIndex(indexes.ModelSearchIndex, indexes.Indexable):
class Meta:
model = Registration