diff --git a/photologue/models.py b/photologue/models.py index fab1f3c..d3f32c6 100644 --- a/photologue/models.py +++ b/photologue/models.py @@ -475,7 +475,9 @@ class Photo(ImageModel): help_text=_('Public photographs will be displayed in the default views.')) class Meta: - ordering = ['-date_added'] + # We do not have a reliable date for ordering, so let's use + # the title which is incremented by most cameras + ordering = ['title'] get_latest_by = 'date_added' verbose_name = _("photo") verbose_name_plural = _("photos")