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

@ -20,6 +20,8 @@ class Rescuer(models.Model):
class Meta:
verbose_name = _("Finder")
verbose_name_plural = _("Finder")
ordering = ["last_name"]
def __str__(self) -> str:
return self.first_name + " " + self.last_name