Commit a0e7119b authored by Michal Čihař's avatar Michal Čihař

Reverse filtering actually makes more sense for comments;

parent a9aa8c1e
......@@ -2447,7 +2447,7 @@ class Comment(models.Model):
timestamp = models.DateTimeField(auto_now_add = True, db_index = True)
class Meta:
ordering = ['-timestamp']
ordering = ['timestamp']
CHECK_CHOICES = [(x, CHECKS[x].name) for x in CHECKS]
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment