diff --git a/app/bird/models.py b/app/bird/models.py index 7a35b47..8b3f4b6 100644 --- a/app/bird/models.py +++ b/app/bird/models.py @@ -88,6 +88,8 @@ class Bird(models.Model): class Meta: verbose_name = _("Vogel") verbose_name_plural = _("Vögel") + ordering = ["bird", "find_circumstances"] + def __str__(self): return self.name