diff --git a/boards/views/archived_threads.py b/boards/views/archived_threads.py --- a/boards/views/archived_threads.py +++ b/boards/views/archived_threads.py @@ -7,4 +7,4 @@ from boards.views.all_threads import All class ArchiveView(AllThreadsView): def get_threads(self): - return Thread.objects.filter(archived=True) \ No newline at end of file + return Thread.objects.filter(archived=True).order_by('-bump_time')