diff options
-rw-r--r-- | app/lttr/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/lttr/models.py b/app/lttr/models.py index 7c40f0e..1efeb79 100644 --- a/app/lttr/models.py +++ b/app/lttr/models.py @@ -224,7 +224,7 @@ class NewsletterMailing(models.Model): issue = models.PositiveIntegerField(blank=True) class Meta: - ordering = ('-title', '-pub_date') + ordering = ('-pub_date', '-newsletter') def __str__(self): return self.title |