Change sort of supporters to be lexicographical.

This commit is contained in:
Bradley M. Kuhn 2015-01-04 12:10:09 -05:00
parent 9a4c92352d
commit 5688ffcd48

View file

@ -13,4 +13,4 @@ class Supporter(models.Model):
return self.display_name
class Meta:
ordering = ('-ledger_entity_id',)
ordering = ('ledger_entity_id',)