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

@ -47,6 +47,9 @@ class Checkin(models.Model):
timestamp = models.DateTimeField(auto_now=True) timestamp = models.DateTimeField(auto_now=True)
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):
""" """