김재준

Results 2 comments of 김재준

same here! i am also wondering if i can use this mixin with my custom simple list filter.

@asfaltboy Thanks for responding so fast! 👍 here's an example in my models.py ```python from django.db import models class Brain(models.Model): is_sexy = models.BooleanField() class Cell(models.Model): brain = models.ForeignKey(Brain, on_delete=models.CASCADE) created_at...