Checkins should always order top-down by timestamp...

This commit is contained in:
Ryan McGrath 2010-10-29 05:15:55 -04:00
parent d503e3fe08
commit c62ba22f13

View file

@ -48,6 +48,9 @@ class Checkin(models.Model):
estimated_time_here = models.CharField(max_length=200, blank=True, null=True) estimated_time_here = models.CharField(max_length=200, blank=True, null=True)
identify_by = models.CharField(max_length=200, blank=True, null=True) identify_by = models.CharField(max_length=200, blank=True, null=True)
class Meta:
ordering = ('-timestamp',)
class Tip(models.Model): class Tip(models.Model):
""" """
Tips - again, fairly self explanatory. Tips - again, fairly self explanatory.