Checkins should always order top-down by timestamp...
This commit is contained in:
parent
d503e3fe08
commit
c62ba22f13
1 changed files with 3 additions and 0 deletions
|
|
@ -48,6 +48,9 @@ class Checkin(models.Model):
|
|||
estimated_time_here = 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):
|
||||
"""
|
||||
Tips - again, fairly self explanatory.
|
||||
|
|
|
|||
Reference in a new issue