Show More
@@ -1,10 +1,10 b'' | |||
|
1 | 1 | from boards.models import Thread |
|
2 | 2 | from boards.views.all_threads import AllThreadsView |
|
3 | 3 | |
|
4 | 4 | __author__ = 'neko259' |
|
5 | 5 | |
|
6 | 6 | |
|
7 | 7 | class ArchiveView(AllThreadsView): |
|
8 | 8 | |
|
9 | 9 | def get_threads(self): |
|
10 | return Thread.objects.filter(archived=True) No newline at end of file | |
|
10 | return Thread.objects.filter(archived=True).order_by('-bump_time') |
General Comments 0
You need to be logged in to leave comments.
Login now