diff --git a/races/models.py b/races/models.py index b943993..293ff7c 100644 --- a/races/models.py +++ b/races/models.py @@ -45,6 +45,9 @@ class RaceUpdate(models.Model): update = models.TextField() event_time = models.DateTimeField(default=timezone.now) + class Meta: + ordering = ['event_time',] + def __unicode__(self): """Text representation of a race update."""