- object_list = Entry.objects.filter(**{"published_%s" % lang: True}
- ).order_by('-published_at_%s' % lang)
+ object_list = Entry.objects.filter(**{"published_%s" % lang: True})
+
+ if for_feed:
+ object_list = object_list.order_by('-published_at_%s' % lang)
+ else:
+ object_list = object_list.order_by('-first_published_at')
+