##// END OF EJS Templates
Staticpage view fix
Staticpage view fix

File last commit:

r549:f618aa60 1.7-dev
r577:a519da78 default
Show More
archived_threads.py
10 lines | 249 B | text/x-python | PythonLexer
from boards.models import Thread
from boards.views.all_threads import AllThreadsView
__author__ = 'neko259'
class ArchiveView(AllThreadsView):
def get_threads(self):
return Thread.objects.filter(archived=True).order_by('-bump_time')