##// END OF EJS Templates
Minor fixes
Minor fixes

File last commit:

r542:8b7899f5 1.7-dev
r548:b40b7f87 1.7-dev
Show More
archived_threads.py
9 lines | 225 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)