form order in bird add #38

This commit is contained in:
gw3000 2023-08-08 15:23:08 +02:00
parent 7b22660ce4
commit 6b276da434
2 changed files with 4 additions and 0 deletions

View file

@ -88,6 +88,8 @@ class Bird(models.Model):
class Meta:
verbose_name = _("Vogel")
verbose_name_plural = _("Vögel")
ordering = ["name"]
def __str__(self):
return self.name