Add ordering to plant list

This commit is contained in:
Dana Lambert 2021-11-17 10:32:54 +13:00
parent 26d1f3ea09
commit 433a72a7a8

View file

@ -160,3 +160,6 @@ class Plant(models.Model):
def __str__(self):
return self.name
class Meta:
ordering = ['stage', 'name', 'commonname', 'synonym']