Jibsgrl
Results
2
issues of
Jibsgrl
Is it possible to trigger elasticsearch indexation from an inherited model? My model.py looks like: ``` class Parent(models.Model): name = models.CharField() class Child(Parent): child_field = models.CharField() ``` And my document.py...