diff --git a/proposals/models.py b/proposals/models.py index 9f6bfa8..0ff11aa 100644 --- a/proposals/models.py +++ b/proposals/models.py @@ -82,6 +82,9 @@ class Talk(PonyConfModel): def score(self): return query_sum(self.vote_set, 'vote') + class Meta: + ordering = ('event',) + class Vote(PonyConfModel):