mirror of
https://gitlab.com/animath/si/plateforme-corres2math.git
synced 2024-12-13 08:46:53 +00:00
9 lines
180 B
Python
9 lines
180 B
Python
from haystack import indexes
|
|
|
|
from .models import Registration
|
|
|
|
|
|
class RegistrationIndex(indexes.ModelSearchIndex, indexes.Indexable):
|
|
class Meta:
|
|
model = Registration
|